/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/
/** @stereotype thing */
public class Thing {
public int assessAcrossRoles() {
return -1;
}
/** */
public void getCustomElseDefaultValue() {
}
public int listRoles() {
return -1;
}
/** */
public static void listThings() {
}
public static int assessAcrossThings() {
return -1;
}
/**
* @clientCardinality 1
* @supplierCardinality 0..1
*/
private ThingRole lnkUnnamed;
private int serialNumber;
private int name;
private int address;
private int customValue;
}
|