Package com.eviware.soapui.inferredSchema

Examples of com.eviware.soapui.inferredSchema.AttributeParticleConfig


    }
  }

  public AttributeParticleConfig save()
  {
    AttributeParticleConfig xml = AttributeParticleConfig.Factory.newInstance();
    xml.setName( name );
    for( Map.Entry<String, String> entry : attributes.entrySet() )
    {
      MapEntryConfig mapEntry = xml.addNewAttribute();
      mapEntry.setKey( entry.getKey() );
      mapEntry.setValue( entry.getValue() );
    }
    xml.setType( type.save() );
    return xml;
  }
View Full Code Here


            attributes.put(entry.getKey(), entry.getValue());
        }
    }

    public AttributeParticleConfig save() {
        AttributeParticleConfig xml = AttributeParticleConfig.Factory.newInstance();
        xml.setName(name);
        for (Map.Entry<String, String> entry : attributes.entrySet()) {
            MapEntryConfig mapEntry = xml.addNewAttribute();
            mapEntry.setKey(entry.getKey());
            mapEntry.setValue(entry.getValue());
        }
        xml.setType(type.save());
        return xml;
    }
View Full Code Here

TOP

Related Classes of com.eviware.soapui.inferredSchema.AttributeParticleConfig

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.