All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.anwiba.tools.eclipse.classpath.generated.ClasspathEntry Maven / Gradle / Ivy

There is a newer version: 1.2.50
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.09.02 at 10:45:54 PM CEST 
//


package net.anwiba.tools.eclipse.classpath.generated;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ClasspathEntryType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ClasspathEntryType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="attributes" type="{}AttributesType" minOccurs="0"/>
 *         <element name="accessrules" type="{}AccessRulesType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="kind" type="{}KindType" />
 *       <attribute name="path" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="combineaccessrules" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="exported" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ClasspathEntryType", propOrder = { "attributes", "accessrules" }) public class ClasspathEntry { protected Attributes attributes; protected AccessRules accessrules; @XmlAttribute(name = "kind") protected KindType kind; @XmlAttribute(name = "path") protected String path; @XmlAttribute(name = "combineaccessrules") protected Boolean combineaccessrules; @XmlAttribute(name = "exported") protected Boolean exported; /** * Gets the value of the attributes property. * * @return * possible object is * {@link Attributes } * */ public Attributes getAttributes() { return attributes; } /** * Sets the value of the attributes property. * * @param value * allowed object is * {@link Attributes } * */ public void setAttributes(Attributes value) { this.attributes = value; } /** * Gets the value of the accessrules property. * * @return * possible object is * {@link AccessRules } * */ public AccessRules getAccessrules() { return accessrules; } /** * Sets the value of the accessrules property. * * @param value * allowed object is * {@link AccessRules } * */ public void setAccessrules(AccessRules value) { this.accessrules = value; } /** * Gets the value of the kind property. * * @return * possible object is * {@link KindType } * */ public KindType getKind() { return kind; } /** * Sets the value of the kind property. * * @param value * allowed object is * {@link KindType } * */ public void setKind(KindType value) { this.kind = value; } /** * Gets the value of the path property. * * @return * possible object is * {@link String } * */ public String getPath() { return path; } /** * Sets the value of the path property. * * @param value * allowed object is * {@link String } * */ public void setPath(String value) { this.path = value; } /** * Gets the value of the combineaccessrules property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCombineaccessrules() { return combineaccessrules; } /** * Sets the value of the combineaccessrules property. * * @param value * allowed object is * {@link Boolean } * */ public void setCombineaccessrules(Boolean value) { this.combineaccessrules = value; } /** * Gets the value of the exported property. * * @return * possible object is * {@link Boolean } * */ public boolean isExported() { if (exported == null) { return false; } else { return exported; } } /** * Sets the value of the exported property. * * @param value * allowed object is * {@link Boolean } * */ public void setExported(Boolean value) { this.exported = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy