Package org.apache.uima.resource.metadata.impl

Source Code of org.apache.uima.resource.metadata.impl.FsIndexDescription_impl

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package org.apache.uima.resource.metadata.impl;

import org.apache.uima.UIMA_IllegalArgumentException;
import org.apache.uima.resource.metadata.FsIndexDescription;
import org.apache.uima.resource.metadata.FsIndexKeyDescription;

/**
*
*
*/
public class FsIndexDescription_impl extends MetaDataObject_impl implements FsIndexDescription {

  static final long serialVersionUID = 8939000196947456114L;

  private String mLabel;

  private String mTypeName;

  private String mKind;

  private FsIndexKeyDescription[] mKeys = new FsIndexKeyDescription[0];

  /**
   * @see org.apache.uima.resource.impl.MetaDataObject_impl#getXMLElementTagName()
   */
  protected String getXMLElementTagName() {
    return "fsIndexDescription";
  }

  /**
   * @see org.apache.uima.cas.FsIndexDescription#getLabel()
   */
  public String getLabel() {
    return mLabel;
  }

  /**
   * @see org.apache.uima.cas.FsIndexDescription#setLabel(String)
   */
  public void setLabel(String aLabel) {
    mLabel = aLabel;
  }

  /**
   * @see org.apache.uima.cas.FsIndexDescription#getTypeName()
   */
  public String getTypeName() {
    return mTypeName;
  }

  /**
   * @see org.apache.uima.cas.FsIndexDescription#setTypeName(String)
   */
  public void setTypeName(String aTypeName) {
    mTypeName = aTypeName;
  }

  /**
   * @see org.apache.uima.cas.FsIndexDescription#getKind
   */
  public String getKind() {
    return mKind;
  }

  /**
   * @see org.apache.uima.cas.FsIndexDescription#setKind(String)
   */
  public void setKind(String aKind) {
    mKind = aKind;
  }

  /**
   * @see org.apache.uima.cas.FsIndexDescription#getKeys()
   */
  public FsIndexKeyDescription[] getKeys() {
    return mKeys;
  }

  /**
   * @see org.apache.uima.cas.FsIndexDescription#setKeys(FsIndexKeyDescription[])
   */
  public void setKeys(FsIndexKeyDescription[] aKeys) {
    if (aKeys == null) {
      throw new UIMA_IllegalArgumentException(UIMA_IllegalArgumentException.ILLEGAL_ARGUMENT,
              new Object[] { "null", "aKeys", "setKeys" });
    }
    mKeys = aKeys;
  }

  protected XmlizationInfo getXmlizationInfo() {
    return XMLIZATION_INFO;
  }

  static final private XmlizationInfo XMLIZATION_INFO = new XmlizationInfo("fsIndexDescription",
          new PropertyXmlInfo[] { new PropertyXmlInfo("label"), new PropertyXmlInfo("typeName"),
              new PropertyXmlInfo("kind"), new PropertyXmlInfo("keys", true)

          });
}
TOP

Related Classes of org.apache.uima.resource.metadata.impl.FsIndexDescription_impl

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.