org.codehaus.modello.plugins.xml.metadata.XmlAssociationMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of modello-plugin-xml Show documentation
Show all versions of modello-plugin-xml Show documentation
Modello XML Plugin contains shared code for every plugins working on XML representation of the model.
The newest version!
package org.codehaus.modello.plugins.xml.metadata;
/*
* Copyright (c) 2004, Codehaus.org
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
import org.codehaus.modello.metadata.AssociationMetadata;
/**
* @author Trygve Laugstøl
*/
public class XmlAssociationMetadata implements AssociationMetadata {
public static final String ID = XmlAssociationMetadata.class.getName();
public static final String EXPLODE_MODE = "explode";
public static final String INLINE_MODE = "inline";
public static final String ITEMS_STYLE_FLAT = "flat";
public static final String ITEMS_STYLE_WRAPPED = "wrapped";
private String tagName;
private String itemsStyle = ITEMS_STYLE_WRAPPED;
private String mapStyle = INLINE_MODE;
private boolean reference;
public String getTagName() {
return tagName;
}
public void setTagName(String tagName) {
this.tagName = tagName;
}
public String getItemsStyle() {
return itemsStyle;
}
public void setItemsStyle(String itemsStyle) {
if (ITEMS_STYLE_FLAT.equals(itemsStyle) || ITEMS_STYLE_WRAPPED.equals(itemsStyle)) {
this.itemsStyle = itemsStyle;
} else {
// default
this.itemsStyle = ITEMS_STYLE_WRAPPED;
}
}
public boolean isFlatItems() {
return ITEMS_STYLE_FLAT.equals(itemsStyle);
}
public boolean isWrappedItems() {
return ITEMS_STYLE_WRAPPED.equals(itemsStyle);
}
/**
* @return Returns the map style.
*/
public String getMapStyle() {
return mapStyle;
}
/**
* @param mapStyle The map style (inline or explode).
*/
public void setMapStyle(String mapStyle) {
if (mapStyle == null) {
this.mapStyle = INLINE_MODE;
} else {
this.mapStyle = mapStyle;
}
}
public boolean isMapInline() {
return INLINE_MODE.equals(mapStyle);
}
public boolean isMapExplode() {
return EXPLODE_MODE.equals(mapStyle);
}
public boolean isReference() {
return reference;
}
public void setReference(boolean reference) {
this.reference = reference;
}
}