You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.9 KiB
74 lines
1.9 KiB
/**
|
|
* Copyright (c) 2002 Sinosoft Co.,LTD.
|
|
* All right reserved.
|
|
*/
|
|
|
|
package com.sinosoft.lis.vschema;
|
|
|
|
import com.sinosoft.lis.schema.LDTaxTableColumnConfigSchema;
|
|
import com.sinosoft.persistence.Set;
|
|
import com.sinosoft.persistence.impl.SetHelper;
|
|
import com.sinosoft.utility.SchemaSet;
|
|
|
|
/**
|
|
* <p>ClassName: LDTaxTableColumnConfigSet </p>
|
|
* <p>Description: DB层 Set 类文件 </p>
|
|
* <p>Copyright: Copyright (c) 2007</p>
|
|
* <p>Company: Sinosoft Co.,LTD </p>
|
|
* @Database Schema2
|
|
* @author Maker2
|
|
* @CreateDatetime 2019-03-16 16:05:45 076
|
|
*/
|
|
public class LDTaxTableColumnConfigSet extends SchemaSet<LDTaxTableColumnConfigSchema> implements Set<LDTaxTableColumnConfigSchema, LDTaxTableColumnConfigSet> {
|
|
// @Method
|
|
@Override
|
|
public void clear() {
|
|
super.clear();
|
|
}
|
|
|
|
@Override
|
|
public int size() {
|
|
return super.size();
|
|
}
|
|
|
|
@Override
|
|
public boolean removeRange(int begin, int end) {
|
|
return super.removeRange(begin, end);
|
|
}
|
|
|
|
public boolean add(LDTaxTableColumnConfigSchema schema) {
|
|
return super.add(schema);
|
|
}
|
|
|
|
public boolean addAll(LDTaxTableColumnConfigSet set) {
|
|
return super.add(set);
|
|
}
|
|
|
|
public boolean add(LDTaxTableColumnConfigSet set) {
|
|
return super.add(set);
|
|
}
|
|
|
|
public boolean remove(LDTaxTableColumnConfigSchema schema) {
|
|
return super.remove(schema);
|
|
}
|
|
|
|
public LDTaxTableColumnConfigSchema get(int index) {
|
|
return (LDTaxTableColumnConfigSchema) super.getObj(index);
|
|
}
|
|
|
|
public boolean set(int index, LDTaxTableColumnConfigSchema schema) {
|
|
return super.set(index, schema);
|
|
}
|
|
|
|
public boolean set(LDTaxTableColumnConfigSet set) {
|
|
return super.set(set);
|
|
}
|
|
|
|
public String encode() {
|
|
return SetHelper.encode(this);
|
|
}
|
|
|
|
public boolean decode(String str) {
|
|
return SetHelper.decode(this, str, mErrors);
|
|
}
|
|
}
|
|
|