예제 #1
0
파일: Components.java 프로젝트: gotomypc/zk
 /** @deprecated As of release 6.0.0, replaced with {@link ConventionWires}. */
 public static final void wireFellows(
     IdSpace idspace,
     Object controller,
     char separator,
     boolean ignoreZScript,
     boolean ignoreXel) {
   ConventionWires.wireFellows(idspace, controller, separator, ignoreZScript, ignoreXel);
 }
예제 #2
0
파일: Components.java 프로젝트: gotomypc/zk
 /** @deprecated As of release 6.0.0, replaced with {@link ConventionWires}. */
 public static void addForwards(Component comp, Object controller, char separator) {
   ConventionWires.addForwards(comp, controller, separator);
 }
예제 #3
0
파일: Components.java 프로젝트: gotomypc/zk
 /** @deprecated As of release 6.0.0, replaced with {@link ConventionWires}. */
 public static final void wireImplicit(Component comp, Object controller) {
   ConventionWires.wireImplicit(comp, controller);
 }
예제 #4
0
파일: Components.java 프로젝트: gotomypc/zk
 /** @deprecated As of release 6.0.0, replaced with {@link ConventionWires}. */
 public static final void wireController(
     Component comp, Object controller, char separator, boolean ignoreZScript, boolean ignoreXel) {
   ConventionWires.wireController(comp, controller, separator);
 }
예제 #5
0
파일: Components.java 프로젝트: gotomypc/zk
 /** @deprecated As of release 6.0.0, replaced with {@link ConventionWires}. */
 public static final void wireController(Component comp, Object controller, char separator) {
   ConventionWires.wireController(comp, controller, separator);
 }
예제 #6
0
파일: Components.java 프로젝트: gotomypc/zk
 /** @deprecated As of release 6.0.0, replaced with {@link ConventionWires}. */
 public static final void wireVariables(
     Page page, Object controller, char separator, boolean ignoreZScript, boolean ignoreXel) {
   ConventionWires.wireVariables(page, controller, separator, ignoreZScript, ignoreXel);
 }
예제 #7
0
파일: Components.java 프로젝트: gotomypc/zk
 /** @deprecated As of release 6.0.0, replaced with {@link ConventionWires}. */
 public static final void wireVariables(Page page, Object controller, char separator) {
   ConventionWires.wireVariables(page, controller, separator);
 }
예제 #8
0
파일: Components.java 프로젝트: gotomypc/zk
 /** @deprecated As of release 6.0.0, replaced with {@link ConventionWires}. */
 public static final void wireVariables(Component comp, Object controller) {
   ConventionWires.wireVariables(comp, controller);
 }
예제 #9
0
파일: Components.java 프로젝트: gotomypc/zk
 /** @deprecated As of release 6.0.0, replaced with {@link ConventionWires}. */
 public static final void wireFellows(IdSpace idspace, Object controller, char separator) {
   ConventionWires.wireFellows(idspace, controller, separator);
 }