⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 modelrelation.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
字号:
/* * $Id: ModelRelation.java 6327 2005-12-14 18:56:54Z jaz $ * *  Copyright (c) 2001-2005 The Open For Business Project - www.ofbiz.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. */package org.ofbiz.entity.model;import java.util.*;import org.w3c.dom.*;import org.ofbiz.base.util.*;/** * Generic Entity - Relation model class * * @author     <a href="mailto:jonesde@ofbiz.org">David E. Jones</a> * @version    $Rev: 6327 $ * @since      2.0 */public class ModelRelation extends ModelChild {    /** the title, gives a name/description to the relation */    protected String title;    /** the type: either "one" or "many" or "one-nofk" */    protected String type;    /** the name of the related entity */    protected String relEntityName;    /** the name to use for a database foreign key, if applies */    protected String fkName;    /** keyMaps defining how to lookup the relatedTable using columns from this table */    protected List keyMaps = new ArrayList();    /** the main entity of this relation */    protected ModelEntity mainEntity = null;        protected boolean isAutoRelation = false;    /** Default Constructor */    public ModelRelation() {        title = "";        type = "";        relEntityName = "";        fkName = "";    }    /** Default Constructor */    public ModelRelation(String type, String title, String relEntityName, String fkName, List keyMaps) {        this.title = title;        if (title == null) title = "";        this.type = type;        this.relEntityName = relEntityName;        this.fkName = fkName;        this.keyMaps.addAll(keyMaps);    }    /** XML Constructor */    public ModelRelation(ModelEntity mainEntity, Element relationElement) {        this.mainEntity = mainEntity;        this.type = UtilXml.checkEmpty(relationElement.getAttribute("type"));        this.title = UtilXml.checkEmpty(relationElement.getAttribute("title"));        this.relEntityName = UtilXml.checkEmpty(relationElement.getAttribute("rel-entity-name"));        this.fkName = UtilXml.checkEmpty(relationElement.getAttribute("fk-name"));        NodeList keyMapList = relationElement.getElementsByTagName("key-map");        for (int i = 0; i < keyMapList.getLength(); i++) {            Element keyMapElement = (Element) keyMapList.item(i);            if (keyMapElement.getParentNode() == relationElement) {                ModelKeyMap keyMap = new ModelKeyMap(keyMapElement);                if (keyMap != null) {                    this.keyMaps.add(keyMap);                }            }        }    }    /** the title, gives a name/description to the relation */    public String getTitle() {        if (this.title == null) {            this.title = "";        }        return this.title;    }    public void setTitle(String title) {        if (title == null) {            this.title = "";        } else {            this.title = title;        }    }    /** the type: either "one" or "many" or "one-nofk" */    public String getType() {        return this.type;    }    public void setType(String type) {        this.type = type;    }    /** the name of the related entity */    public String getRelEntityName() {        return this.relEntityName;    }    public void setRelEntityName(String relEntityName) {        this.relEntityName = relEntityName;    }    public String getFkName() {        return this.fkName;    }    public void setFkName(String fkName) {        this.fkName = fkName;    }    /** @deprecated      * the main entity of this relation */    public ModelEntity getMainEntity() {        return getModelEntity();    }    /** @deprecated */    public void setMainEntity(ModelEntity mainEntity) {        setModelEntity(mainEntity);    }    /** keyMaps defining how to lookup the relatedTable using columns from this table */    public Iterator getKeyMapsIterator() {        return this.keyMaps.iterator();    }    public int getKeyMapsSize() {        return this.keyMaps.size();    }    public ModelKeyMap getKeyMap(int index) {        return (ModelKeyMap) this.keyMaps.get(index);    }    public void addKeyMap(ModelKeyMap keyMap) {        this.keyMaps.add(keyMap);    }    public ModelKeyMap removeKeyMap(int index) {        return (ModelKeyMap) this.keyMaps.remove(index);    }    /** Find a KeyMap with the specified fieldName */    public ModelKeyMap findKeyMap(String fieldName) {        for (int i = 0; i < keyMaps.size(); i++) {            ModelKeyMap keyMap = (ModelKeyMap) keyMaps.get(i);            if (keyMap.fieldName.equals(fieldName)) return keyMap;        }        return null;    }    /** Find a KeyMap with the specified relFieldName */    public ModelKeyMap findKeyMapByRelated(String relFieldName) {        for (int i = 0; i < keyMaps.size(); i++) {            ModelKeyMap keyMap = (ModelKeyMap) keyMaps.get(i);            if (keyMap.relFieldName.equals(relFieldName))                return keyMap;        }        return null;    }    public String keyMapString(String separator, String afterLast) {        String returnString = "";        if (keyMaps.size() < 1) {            return "";        }        int i = 0;        for (; i < keyMaps.size() - 1; i++) {            returnString = returnString + ((ModelKeyMap) keyMaps.get(i)).fieldName + separator;        }        returnString = returnString + ((ModelKeyMap) keyMaps.get(i)).fieldName + afterLast;        return returnString;    }    public String keyMapUpperString(String separator, String afterLast) {        if (keyMaps.size() < 1)            return "";        StringBuffer returnString = new StringBuffer( keyMaps.size() * 10 );        int i=0;        while (true) {            ModelKeyMap kmap = (ModelKeyMap) keyMaps.get(i);            returnString.append( ModelUtil.upperFirstChar( kmap.fieldName));            i++;            if (i >= keyMaps.size()) {                returnString.append( afterLast );                break;            }            returnString.append( separator );        }        return returnString.toString();    }    public String keyMapRelatedUpperString(String separator, String afterLast) {        if (keyMaps.size() < 1)            return "";        StringBuffer returnString = new StringBuffer( keyMaps.size() * 10 );        int i=0;        while (true) {            ModelKeyMap kmap = (ModelKeyMap) keyMaps.get(i);            returnString.append( ModelUtil.upperFirstChar( kmap.relFieldName ));            i++;            if (i >= keyMaps.size()) {                returnString.append( afterLast );                break;            }            returnString.append( separator );        }        return returnString.toString();    }    /**     * @return Returns the isAutoRelation.     */    public boolean isAutoRelation() {        return isAutoRelation;    }    /**     * @param isAutoRelation The isAutoRelation to set.     */    public void setAutoRelation(boolean isAutoRelation) {        this.isAutoRelation = isAutoRelation;    }        public boolean equals(Object other) {        ModelRelation otherRel = (ModelRelation) other;                if (!otherRel.type.equals(this.type)) return false;        if (!otherRel.title.equals(this.title)) return false;        if (!otherRel.relEntityName.equals(this.relEntityName)) return false;                Set thisKeyNames = new HashSet(this.keyMaps);        Set otherKeyNames = new HashSet(otherRel.keyMaps);        if (!thisKeyNames.containsAll(otherKeyNames)) return false;        if (!otherKeyNames.containsAll(thisKeyNames)) return false;                return true;    }    public Element toXmlElement(Document document) {        Element root = document.createElement("relation");        root.setAttribute("type", this.getType());        if (UtilValidate.isNotEmpty(this.getTitle())) {            root.setAttribute("title", this.getTitle());        }        root.setAttribute("rel-entity-name", this.getRelEntityName());        if (UtilValidate.isNotEmpty(this.getFkName())) {            root.setAttribute("fk-name", this.getFkName());        }        Iterator kmIter = this.getKeyMapsIterator();        while (kmIter != null && kmIter.hasNext()) {            ModelKeyMap km = (ModelKeyMap) kmIter.next();            root.appendChild(km.toXmlElement(document));        }        return root;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -