Package com.esri.gpt.catalog.schema

Examples of com.esri.gpt.catalog.schema.UiContext


      component.setId("xsltBasedDetails");
      component.setValue(htmlFragment);
      component.setEscape(false);
      detailsPanelGroup.getChildren().add(component);
    } else {
      UiContext uiContext = new UiContext();
      schema.appendDetailSections(uiContext,detailsPanelGroup);
    }
  }
}
View Full Code Here


      setNavigationOutcome("catalog.publication.gxeEditor");
      return;
    }
   
    // build the sections panel group, navigate to the edit metadata page
    UiContext uiContext = new UiContext();
    uiContext.setIsCreateDocument(true);
    buildSectionsPanelGroup(uiContext,_sectionsPanelGroup,schema);
    setNavigationOutcome("catalog.publication.editMetadata");
  }
}
View Full Code Here

    setNavigationOutcome("catalog.publication.gxeEditor");
    return;
  }
 
  // build the sections panel group
  UiContext uiContext = new UiContext();
  buildSectionsPanelGroup(uiContext,_sectionsPanelGroup,schema);
}
View Full Code Here

    MetadataDocument document = new MetadataDocument();
    schema = document.prepareForCreate(context,sOpenSchemaKey);
  }
 
  // un-bind editor values, validate the input
  UiContext uiContext = new UiContext();
  schema.unBind(uiContext,editorForm);

  try {
    if (!asDraft) schema.validate();
  } catch (ValidationException e) {
View Full Code Here

TOP

Related Classes of com.esri.gpt.catalog.schema.UiContext

Copyright © 2018 www.massapicom. 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.