From 40a9d99496e098562f090fb7ffce9e749011b131 Mon Sep 17 00:00:00 2001 From: Benjamin Culkin Date: Mon, 20 May 2024 17:58:16 -0400 Subject: Formatting pass --- .../net/wotonomy/test/TestObjectClassDesc.java | 38 +++++++++------------- 1 file changed, 16 insertions(+), 22 deletions(-) (limited to 'projects/net.wotonomy.test/src/main/java/net/wotonomy/test/TestObjectClassDesc.java') 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"); + } } -- cgit v1.2.3