• R/O
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision168 (tree)
Time2015-12-23 16:27:37
Authort_nakayama1971

Log Message

(empty log message)

Change Summary

Incremental Difference

--- trunk/framework/fwOnline/src/online/view/el/ViewELResolver.java (revision 167)
+++ trunk/framework/fwOnline/src/online/view/el/ViewELResolver.java (revision 168)
@@ -53,7 +53,7 @@
5353 if (String.class.isInstance(property)) {
5454 if (base == null || ViewMap.class.isInstance(base)) {
5555 return doViewMap(context, base, property);
56- } else if (Band.class.isInstance(base)) {
56+ } else if (ViewBand.class.isInstance(base)) {
5757 return doBand(context, base, property);
5858 }
5959 }
@@ -74,7 +74,7 @@
7474 String key = String.class.cast(property);
7575 if ("band".equals(key)) {
7676 context.setPropertyResolved(true);
77- return new Band(map);
77+ return new ViewBand(map);
7878 } else if (page.getAttributesScope(key) == 0 || map.containsKey(key)) {
7979 context.setPropertyResolved(true);
8080 return map.get(key);
@@ -92,9 +92,9 @@
9292 */
9393 private Object doBand(final ELContext context, final Object base, final Object property) {
9494 context.setPropertyResolved(true);
95- ViewMap map = Band.class.cast(base).getViewMap();
95+ ViewMap map = ViewBand.class.cast(base).getViewMap();
9696 if (ViewMap.class.isInstance(map.get(property))) {
97- return new Band(ViewMap.class.cast(map.get(property)));
97+ return new ViewBand(ViewMap.class.cast(map.get(property)));
9898 }
9999 return new BandList(map, String.class.cast(property));
100100 }
@@ -138,7 +138,7 @@
138138 *
139139 * @author Tadashi Nakayama
140140 */
141- private static final class Band {
141+ private static final class ViewBand {
142142 /** ViewMap */
143143 private final ViewMap vm;
144144
@@ -146,7 +146,7 @@
146146 * コンストラクタ
147147 * @param val ViewMap
148148 */
149- Band(final ViewMap val) {
149+ ViewBand(final ViewMap val) {
150150 this.vm = val;
151151 }
152152