2012-06-17 20:34:50 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* 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
|
|
|
|
*******************************************************************************/
|
2021-01-02 16:15:27 +01:00
|
|
|
package com.minres.scviewer.database.text;
|
|
|
|
|
|
|
|
import java.io.Serializable;
|
2012-06-17 19:53:05 +02:00
|
|
|
|
2015-01-03 16:34:32 +01:00
|
|
|
import com.minres.scviewer.database.AssociationType;
|
|
|
|
import com.minres.scviewer.database.DataType;
|
2021-01-02 16:15:27 +01:00
|
|
|
import com.minres.scviewer.database.tx.ITxAttribute;
|
|
|
|
import com.minres.scviewer.database.tx.ITxAttributeType;
|
2012-06-17 19:53:05 +02:00
|
|
|
|
2021-01-02 16:15:27 +01:00
|
|
|
public class TxAttribute implements ITxAttribute, Serializable {
|
2012-06-17 19:53:05 +02:00
|
|
|
|
2021-01-02 16:15:27 +01:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
private static final long serialVersionUID = 4767726016651807152L;
|
|
|
|
|
|
|
|
ITxAttributeType attributeType;
|
2015-01-01 23:17:32 +01:00
|
|
|
|
2021-01-02 16:15:27 +01:00
|
|
|
String value;
|
2012-06-17 19:53:05 +02:00
|
|
|
|
2021-01-02 16:15:27 +01:00
|
|
|
TxAttribute(String name, DataType dataType, AssociationType type, String value){
|
|
|
|
attributeType = TxAttributeTypeFactory.INSTANCE.getAttrType(name, dataType, type);
|
2015-01-01 23:17:32 +01:00
|
|
|
switch(dataType){
|
2021-01-02 16:15:27 +01:00
|
|
|
case STRING:
|
|
|
|
case ENUMERATION:
|
|
|
|
this.value=value.substring(1, value.length()-2);
|
2012-06-17 19:53:05 +02:00
|
|
|
break;
|
|
|
|
default:
|
2021-01-02 16:15:27 +01:00
|
|
|
this.value=value;
|
2012-06-17 19:53:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-02 16:15:27 +01:00
|
|
|
TxAttribute(ITxAttributeType type){
|
|
|
|
attributeType=type;
|
2012-06-17 19:53:05 +02:00
|
|
|
}
|
|
|
|
|
2021-01-02 16:15:27 +01:00
|
|
|
TxAttribute(ITxAttributeType type, String value){
|
|
|
|
this(type.getName(), type.getDataType(), type.getType(), value);
|
2012-06-17 19:53:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName() {
|
|
|
|
return attributeType.getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-01-03 16:34:32 +01:00
|
|
|
public AssociationType getType() {
|
2021-01-02 16:15:27 +01:00
|
|
|
return attributeType.getType();
|
2012-06-17 19:53:05 +02:00
|
|
|
}
|
|
|
|
|
2015-01-03 16:34:32 +01:00
|
|
|
@Override
|
|
|
|
public DataType getDataType() {
|
2021-01-02 16:15:27 +01:00
|
|
|
return attributeType.getDataType();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Object getValue() {
|
|
|
|
return value;
|
2015-01-01 23:17:32 +01:00
|
|
|
}
|
|
|
|
|
2012-06-17 19:53:05 +02:00
|
|
|
}
|