Examples of MapValueProperty


Examples of at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.MapValueProperty

        }
        return
      } else if( p.getValue() instanceof ResourceValueProperty ) {
        return;
      } else if( p.getValue() instanceof MapValueProperty ) {
        MapValueProperty mp = (MapValueProperty) p.getValue();
        for( Property mpp : mp.getProperties() ) {
          createNode(parentNode, mpp);
        }
        return;
      }
    } else if( modelElement instanceof StaticCallValueProperty ) {
View Full Code Here

Examples of at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.MapValueProperty

        if ("fx:value".equals(qName)) {
          if (isSpecial(getStructuralParent())) {
            boolean attached = false;
            for (Property p : elementStack.peek().getProperties()) {
              if (getStructuralParent().equals(p.getName())) {
                MapValueProperty prop = (MapValueProperty) p
                    .getValue();
                SimpleValueProperty e = FXGraphFactory.eINSTANCE
                    .createSimpleValueProperty();
                e.setStringValue(value);
                Property mapval = createProperty(localName, e);
                prop.getProperties().add(mapval);
                attached = true;
                break;
              }
            }
            if (!attached) {
View Full Code Here

Examples of at.bestsolution.efxclipse.tooling.fxgraph.fXGraph.MapValueProperty

 
  public CharSequence generateMapValueProperty(final Property p) {
    StringConcatenation _builder = new StringConcatenation();
    CastHelper _castHelper = new CastHelper();
    ValueProperty _value = p.getValue();
    final MapValueProperty list = _castHelper.castToMapValueProperty(_value);
    _builder.newLineIfNotEmpty();
    String _name = p.getName();
    _builder.append(_name, "");
    _builder.append(" : [");
    _builder.newLineIfNotEmpty();
    Boolean comma = Boolean.valueOf(false);
    _builder.newLineIfNotEmpty();
    {
      EList<Property> _properties = list.getProperties();
      for(final Property inner : _properties) {
        _builder.append("\t");
        {
          if ((comma).booleanValue()) {
            _builder.append(",");
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.