Examples of widgetProperty()


Examples of org.cruxframework.crux.core.rebind.screen.widget.declarative.TagConstraints.widgetProperty()

  private void createChildProcessorForMultipleChildrenProcessor(boolean acceptNoChildren, ChildrenProcessor childrenProcessor,
                                  Class<?> childProcessorClass, boolean isAgregator,
                                  WidgetChildProcessor<?> processor, Device[] supportedDevices)
    {
      TagConstraints processorAttributes = this.factoryHelper.getChildtrenAttributesAnnotation(childProcessorClass);
      final String widgetProperty = (processorAttributes!=null?processorAttributes.widgetProperty():"");
      String tagName = (processorAttributes!=null?processorAttributes.tagName():"");

      final boolean isAnyWidget = (AnyWidgetChildProcessor.class.isAssignableFrom(childProcessorClass));
      final boolean isAnyWidgetType = (processorAttributes!=null && (AnyWidget.class.isAssignableFrom(processorAttributes.type()) ||
                                       WidgetCreator.class.isAssignableFrom(processorAttributes.type())));
View Full Code Here

Examples of org.cruxframework.crux.core.rebind.screen.widget.declarative.TagConstraints.widgetProperty()

   */
  private ChildrenProcessor createChildProcessorForText(Class<?> processorClass, TagChild child, final boolean acceptNoChildren)
    {
    Class<?> childProcessor = child.value();
    TagConstraints processorAttributes = factoryHelper.getChildtrenAttributesAnnotation(childProcessor);
    final String widgetProperty = processorAttributes.widgetProperty();
    final boolean isHasText = HasText.class.isAssignableFrom(factoryHelper.getWidgetType());
   
      ChildrenProcessor childrenProcessor = new ChildrenProcessor()
    {
      public void processChildren(SourcePrinter out, WidgetCreatorContext context)
View Full Code Here

Examples of org.cruxframework.crux.core.rebind.screen.widget.declarative.TagConstraints.widgetProperty()

   */
  private ChildrenProcessor doCreateChildrenProcessorForSingleChild(Class<?> processorClass, final boolean acceptNoChildren,
                      WidgetChildProcessor<?> processor, Class<?> childProcessorClass, Device[] supportedDevices)
    {
    TagConstraints processorAttributes = this.factoryHelper.getChildtrenAttributesAnnotation(childProcessorClass);
    final String widgetProperty = (processorAttributes!=null?processorAttributes.widgetProperty():"");
    String tagName = (processorAttributes!=null?processorAttributes.tagName():"");

    final boolean isAgregator = isAgregatorProcessor(childProcessorClass);
    final boolean isAnyWidget = (AnyWidgetChildProcessor.class.isAssignableFrom(childProcessorClass));
      final boolean isAnyWidgetType = (processorAttributes!=null && (AnyWidget.class.isAssignableFrom(processorAttributes.type()) ||
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.