|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.apelon.dts.common.subset.SubsetUpdate
public class SubsetUpdate
Contains the Subset Update items. ID identifies the subset. Name, description and expression can be modified.
To update name to "XYZ" for Subset of ID 1000, using SubsetQuery sq:
SubsetUpdate su = new SubsetUpdate(1000); su.setName("XYZ"); sq.update(su);
Copyright: Copyright (c) 2004
Company: Apelon, Inc.
Constructor Summary | |
---|---|
SubsetUpdate()
Empty constructor for Java Beans compliance |
|
SubsetUpdate(int id)
Constructs SubsetUpdate. |
Method Summary | |
---|---|
String |
getDescription()
Get the new description for the subset. |
String |
getExpression()
Get the new subset expression for the subset |
int |
getId()
Get subset id |
String |
getName()
Get the name for the subset. |
void |
setDescription(String description)
Set the new description for the subset |
void |
setExpression(String expression)
Set new expression. |
void |
setId(int id)
Set id of the subset to update |
void |
setName(String name)
Set the new name for the subset |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SubsetUpdate()
public SubsetUpdate(int id)
id
- Method Detail |
---|
public int getId()
public void setId(int id)
id
- public String getName()
public void setName(String name)
name
- public String getDescription()
public void setDescription(String description)
description
- public String getExpression()
public void setExpression(String expression)
Subset
expression
-
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |