01: /*
02: *
03: * Copyright (c) 2004 SourceTap - www.sourcetap.com
04: *
05: * The contents of this file are subject to the SourceTap Public License
06: * ("License"); You may not use this file except in compliance with the
07: * License. You may obtain a copy of the License at http://www.sourcetap.com/license.htm
08: * Software distributed under the License is distributed on an "AS IS" basis,
09: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
10: * the specific language governing rights and limitations under the License.
11: *
12: * The above copyright notice and this permission notice shall be included
13: * in all copies or substantial portions of the Software.
14: *
15: */
16:
17: package org.ofbiz.core.entity;
18:
19: public class EntityAttribute {
20: private String entity = "";
21: private String field = "";
22:
23: public EntityAttribute(String entity, String field) {
24: this .entity = entity;
25: this .field = field;
26: }
27:
28: public String getEntity() {
29: return entity;
30: }
31:
32: public String getField() {
33: return field;
34: }
35:
36: public void setEntity(String entity) {
37: this .entity = entity;
38: }
39:
40: public void setField(String field) {
41: this.field = field;
42: }
43:
44: }
|