SCViewer/com.itjw.txviewer.database..../src/com/itjw/txviewer/database/text/TrAttrType.groovy

28 lines
877 B
Groovy

/*******************************************************************************
* Copyright (c) 2012 IT Just working.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IT Just working - initial API and implementation
*******************************************************************************/
package com.itjw.txviewer.database.text
import com.itjw.txviewer.database.ITrAttrType;
class TrAttrType implements ITrAttrType {
String name
String type
static TrAttrType getAttrType(String name, String type){
TrAttrTypeFactory.instance.getAttrType(name, type)
}
TrAttrType(String name, String type){
this.name=name
this.type=type
}
}