X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fschemabinding%2Fversion2%2Fdescriptors%2FFeatureMatcherSetDescriptor.java;fp=src%2Fjalview%2Fschemabinding%2Fversion2%2Fdescriptors%2FFeatureMatcherSetDescriptor.java;h=0000000000000000000000000000000000000000;hb=116f357c7b1056f7c20dd0f7ecbcb50ea50e4e72;hp=b3d19bb89ec82d3f324c458efc47fe7d3d47a42f;hpb=3997675132f682a045f2074c31dceedfbc1a3895;p=jalview.git diff --git a/src/jalview/schemabinding/version2/descriptors/FeatureMatcherSetDescriptor.java b/src/jalview/schemabinding/version2/descriptors/FeatureMatcherSetDescriptor.java deleted file mode 100644 index b3d19bb..0000000 --- a/src/jalview/schemabinding/version2/descriptors/FeatureMatcherSetDescriptor.java +++ /dev/null @@ -1,258 +0,0 @@ -/* - * This class was automatically generated with - * Castor 1.1, using an XML - * Schema. - * $Id$ - */ - -package jalview.schemabinding.version2.descriptors; - -import jalview.schemabinding.version2.CompoundMatcher; - -//---------------------------------/ -//- Imported classes and packages -/ -//---------------------------------/ - -import jalview.schemabinding.version2.FeatureMatcherSet; -import jalview.schemabinding.version2.MatchCondition; - -/** - * Class FeatureMatcherSetDescriptor. - * - * @version $Revision$ $Date$ - */ -public class FeatureMatcherSetDescriptor - extends org.exolab.castor.xml.util.XMLClassDescriptorImpl -{ - - // --------------------------/ - // - Class/Member Variables -/ - // --------------------------/ - - /** - * Field _elementDefinition. - */ - private boolean _elementDefinition; - - /** - * Field _nsPrefix. - */ - private java.lang.String _nsPrefix; - - /** - * Field _nsURI. - */ - private java.lang.String _nsURI; - - /** - * Field _xmlName. - */ - private java.lang.String _xmlName; - - // ----------------/ - // - Constructors -/ - // ----------------/ - - public FeatureMatcherSetDescriptor() - { - super(); - _nsURI = "www.jalview.org/colours"; - _xmlName = "FeatureMatcherSet"; - _elementDefinition = false; - - // -- set grouping compositor - setCompositorAsChoice(); - org.exolab.castor.xml.util.XMLFieldDescriptorImpl desc = null; - org.exolab.castor.mapping.FieldHandler handler = null; - org.exolab.castor.xml.FieldValidator fieldValidator = null; - // -- initialize attribute descriptors - - // -- initialize element descriptors - - // -- _matchCondition - desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl( - MatchCondition.class, "_matchCondition", "matchCondition", - org.exolab.castor.xml.NodeType.Element); - handler = new org.exolab.castor.xml.XMLFieldHandler() - { - @Override - public java.lang.Object getValue(java.lang.Object object) - throws IllegalStateException - { - FeatureMatcherSet target = (FeatureMatcherSet) object; - return target.getMatchCondition(); - } - - @Override - public void setValue(java.lang.Object object, java.lang.Object value) - throws IllegalStateException, IllegalArgumentException - { - try - { - FeatureMatcherSet target = (FeatureMatcherSet) object; - target.setMatchCondition((MatchCondition) value); - } catch (java.lang.Exception ex) - { - throw new IllegalStateException(ex.toString()); - } - } - - @Override - public java.lang.Object newInstance(java.lang.Object parent) - { - return new MatchCondition(); - } - }; - desc.setHandler(handler); - desc.setRequired(true); - desc.setMultivalued(false); - addFieldDescriptor(desc); - - // -- validation code for: _matchCondition - fieldValidator = new org.exolab.castor.xml.FieldValidator(); - fieldValidator.setMinOccurs(1); - { // -- local scope - } - desc.setValidator(fieldValidator); - // -- _compoundMatcher - desc = new org.exolab.castor.xml.util.XMLFieldDescriptorImpl( - CompoundMatcher.class, "_compoundMatcher", "compoundMatcher", - org.exolab.castor.xml.NodeType.Element); - handler = new org.exolab.castor.xml.XMLFieldHandler() - { - @Override - public java.lang.Object getValue(java.lang.Object object) - throws IllegalStateException - { - FeatureMatcherSet target = (FeatureMatcherSet) object; - return target.getCompoundMatcher(); - } - - @Override - public void setValue(java.lang.Object object, java.lang.Object value) - throws IllegalStateException, IllegalArgumentException - { - try - { - FeatureMatcherSet target = (FeatureMatcherSet) object; - target.setCompoundMatcher((CompoundMatcher) value); - } catch (java.lang.Exception ex) - { - throw new IllegalStateException(ex.toString()); - } - } - - @Override - public java.lang.Object newInstance(java.lang.Object parent) - { - return new CompoundMatcher(); - } - }; - desc.setHandler(handler); - desc.setRequired(true); - desc.setMultivalued(false); - addFieldDescriptor(desc); - - // -- validation code for: _compoundMatcher - fieldValidator = new org.exolab.castor.xml.FieldValidator(); - fieldValidator.setMinOccurs(1); - { // -- local scope - } - desc.setValidator(fieldValidator); - } - - // -----------/ - // - Methods -/ - // -----------/ - - /** - * Method getAccessMode. - * - * @return the access mode specified for this class. - */ - @Override - public org.exolab.castor.mapping.AccessMode getAccessMode() - { - return null; - } - - /** - * Method getIdentity. - * - * @return the identity field, null if this class has no identity. - */ - @Override - public org.exolab.castor.mapping.FieldDescriptor getIdentity() - { - return super.getIdentity(); - } - - /** - * Method getJavaClass. - * - * @return the Java class represented by this descriptor. - */ - @Override - public java.lang.Class getJavaClass() - { - return jalview.schemabinding.version2.FeatureMatcherSet.class; - } - - /** - * Method getNameSpacePrefix. - * - * @return the namespace prefix to use when marshaling as XML. - */ - @Override - public java.lang.String getNameSpacePrefix() - { - return _nsPrefix; - } - - /** - * Method getNameSpaceURI. - * - * @return the namespace URI used when marshaling and unmarshaling as XML. - */ - @Override - public java.lang.String getNameSpaceURI() - { - return _nsURI; - } - - /** - * Method getValidator. - * - * @return a specific validator for the class described by this - * ClassDescriptor. - */ - @Override - public org.exolab.castor.xml.TypeValidator getValidator() - { - return this; - } - - /** - * Method getXMLName. - * - * @return the XML Name for the Class being described. - */ - @Override - public java.lang.String getXMLName() - { - return _xmlName; - } - - /** - * Method isElementDefinition. - * - * @return true if XML schema definition of this Class is that of a global - * element or element with anonymous type definition. - */ - @Override - public boolean isElementDefinition() - { - return _elementDefinition; - } - -}