Examples of RadioInput


Examples of org.metaworks.inputter.RadioInput

 
  public static void metaworksCallback_changeMetadata(Type type) {
//    type.getFieldDescriptor("ExtValue1").setDisplayName("주 화면 아이디");
//    type.getFieldDescriptor("ExtValue2").setDisplayName("서브 화면 아이디");
    type.getFieldDescriptor("ApprovalType").setInputter(
        new RadioInput(
            new String[] { APPROVAL_TYPE_DRAFT, APPROVAL_TYPE_APPROVAL, APPROVAL_TYPE_COOPERATION, APPROVAL_TYPE_ARBITRARY_APPROVAL },
            new Integer[] { APPROVAL_TYPE_DRAFT_CODE, APPROVAL_TYPE_APPROVAL_CODE, APPROVAL_TYPE_COOPERATION_CODE, APPROVAL_TYPE_ARBITRARY_APPROVAL_CODE }
            )
        );
  }
View Full Code Here

Examples of org.metaworks.inputter.RadioInput

  public final static String KEY_APPR_LINE_STATUS = "KEY_APPR_LINE_STATUS";
  public final static String KEY_APPR_KEY = "KEY_APPR_KEY";

  public static void metaworksCallback_changeMetadata(Type type){
    FieldDescriptor fd = type.getFieldDescriptor("RejectOption");
    fd.setInputter(new RadioInput(
        new String[] { "back to draft", "back to prev", "back to flag", "finish" }, new Integer[] {
            ExternalApprovalLineActivity.LOOPING_OPTION_BACK_TO_DRAFT,
            ExternalApprovalLineActivity.LOOPING_OPTION_BACK_TO_PREV,
            ExternalApprovalLineActivity.LOOPING_OPTION_BACK_TO_FLAG,
            ExternalApprovalLineActivity.LOOPING_OPTION_FINISH }));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.