summaryrefslogtreecommitdiff
path: root/projects/net.wotonomy.test/src/main/java/net/wotonomy/test/TestObjectClassDesc.java
diff options
context:
space:
mode:
Diffstat (limited to 'projects/net.wotonomy.test/src/main/java/net/wotonomy/test/TestObjectClassDesc.java')
-rw-r--r--projects/net.wotonomy.test/src/main/java/net/wotonomy/test/TestObjectClassDesc.java38
1 files changed, 16 insertions, 22 deletions
diff --git a/projects/net.wotonomy.test/src/main/java/net/wotonomy/test/TestObjectClassDesc.java b/projects/net.wotonomy.test/src/main/java/net/wotonomy/test/TestObjectClassDesc.java
index beb852c..409d900 100644
--- a/projects/net.wotonomy.test/src/main/java/net/wotonomy/test/TestObjectClassDesc.java
+++ b/projects/net.wotonomy.test/src/main/java/net/wotonomy/test/TestObjectClassDesc.java
@@ -4,28 +4,22 @@ import net.wotonomy.control.EOClassDescription;
import net.wotonomy.foundation.NSArray;
/**
-* A simple class description for testing.
-*/
-public class TestObjectClassDesc extends EOClassDescription
-{
- public TestObjectClassDesc()
- {
- super( TestObject.class );
- }
+ * A simple class description for testing.
+ */
+public class TestObjectClassDesc extends EOClassDescription {
+ public TestObjectClassDesc() {
+ super(TestObject.class);
+ }
- public EOClassDescription classDescriptionForDestinationKey(
- String detailKey )
- {
- if ( "childList".equals( detailKey ) )
- {
- return this;
- }
- return null;
- }
-
- public NSArray toManyRelationshipKeys()
- {
- return new NSArray( "childList" );
- }
+ public EOClassDescription classDescriptionForDestinationKey(String detailKey) {
+ if ("childList".equals(detailKey)) {
+ return this;
+ }
+ return null;
+ }
+
+ public NSArray toManyRelationshipKeys() {
+ return new NSArray("childList");
+ }
}