190191192193194195196
public FeatureId featureId(String id) { return new FeatureIdImpl( id ); } public GmlObjectId gmlObjectId(String id) { return new GmlObjectIdImpl( id ); }
4849505152535455565758
public LenientAttribute(Object content, AttributeDescriptor descriptor, String id) { super( content, descriptor ); if( id != null ){ this.id = new GmlObjectIdImpl( id ); } else { this.id = null; } }