| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.seasar.uruma.binding.value.command; |
| 17 | |
|
| 18 | |
import java.lang.reflect.Field; |
| 19 | |
import java.util.List; |
| 20 | |
|
| 21 | |
import org.seasar.framework.beans.PropertyDesc; |
| 22 | |
import org.seasar.framework.util.StringUtil; |
| 23 | |
import org.seasar.uruma.annotation.ExportValue; |
| 24 | |
import org.seasar.uruma.annotation.ImportExportValue; |
| 25 | |
import org.seasar.uruma.binding.value.BindingCommand; |
| 26 | |
import org.seasar.uruma.binding.value.ValueBinder; |
| 27 | |
import org.seasar.uruma.component.UIComponent; |
| 28 | |
import org.seasar.uruma.desc.FormDesc; |
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | 4 | public class ExportValueCommand extends AbstractBindingCommand<ExportValue> { |
| 36 | |
|
| 37 | |
|
| 38 | |
|
| 39 | |
|
| 40 | |
public List<PropertyDesc> getTargetPropertyDescs(final FormDesc desc) { |
| 41 | 148 | return desc.getExportValueProperties(); |
| 42 | |
} |
| 43 | |
|
| 44 | |
|
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
|
| 49 | |
@Override |
| 50 | |
protected void doBind(final ValueBinder binder, final Object widget, |
| 51 | |
final Object formObj, final PropertyDesc propDesc, |
| 52 | |
final UIComponent uiComp) { |
| 53 | 32 | binder.exportValue(widget, formObj, propDesc, uiComp); |
| 54 | 32 | } |
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | |
|
| 59 | |
@Override |
| 60 | |
public String getId(final Field field) { |
| 61 | 32 | ExportValue exportValue = field.getAnnotation(ExportValue.class); |
| 62 | 32 | if (exportValue != null) { |
| 63 | 24 | String id = exportValue.id(); |
| 64 | 24 | return StringUtil.isEmpty(id) ? field.getName() : id; |
| 65 | |
} |
| 66 | |
|
| 67 | 8 | ImportExportValue importExportValue = field |
| 68 | |
.getAnnotation(ImportExportValue.class); |
| 69 | 8 | if (importExportValue != null) { |
| 70 | 8 | String id = importExportValue.id(); |
| 71 | 8 | return StringUtil.isEmpty(id) ? field.getName() : id; |
| 72 | |
} |
| 73 | |
|
| 74 | 0 | return field.getName(); |
| 75 | |
} |
| 76 | |
|
| 77 | |
|
| 78 | |
|
| 79 | |
|
| 80 | |
@Override |
| 81 | |
protected ExportValue getAnnotation(final Field field) { |
| 82 | 0 | return field.getAnnotation(ExportValue.class); |
| 83 | |
} |
| 84 | |
|
| 85 | |
|
| 86 | |
|
| 87 | |
|
| 88 | |
@Override |
| 89 | |
protected String getId(final ExportValue annotation) { |
| 90 | 0 | return annotation.id(); |
| 91 | |
} |
| 92 | |
} |