squid:S1213 - The members of an interface declaration or class should appear in a pre-defined order
This commit is contained in:
@ -24,14 +24,6 @@ import org.apache.isis.applib.annotation.SemanticsOf;
|
||||
@DomainService(nature = NatureOfService.VIEW_CONTRIBUTIONS_ONLY)
|
||||
public class HomePageService {
|
||||
|
||||
// region > homePage (action)
|
||||
|
||||
@Action(semantics = SemanticsOf.SAFE)
|
||||
@HomePage
|
||||
public HomePageViewModel homePage() {
|
||||
return container.injectServicesInto(new HomePageViewModel());
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
@ -40,4 +32,13 @@ public class HomePageService {
|
||||
DomainObjectContainer container;
|
||||
|
||||
// endregion
|
||||
|
||||
// region > homePage (action)
|
||||
|
||||
@Action(semantics = SemanticsOf.SAFE)
|
||||
@HomePage
|
||||
public HomePageViewModel homePage() {
|
||||
return container.injectServicesInto(new HomePageViewModel());
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -24,6 +24,15 @@ import domainapp.dom.modules.simple.SimpleObjects;
|
||||
@ViewModel
|
||||
public class HomePageViewModel {
|
||||
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
|
||||
@javax.inject.Inject
|
||||
SimpleObjects simpleObjects;
|
||||
|
||||
// endregion
|
||||
|
||||
// region > title
|
||||
public String title() {
|
||||
return getObjects().size() + " objects";
|
||||
@ -37,12 +46,4 @@ public class HomePageViewModel {
|
||||
return simpleObjects.listAll();
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
|
||||
@javax.inject.Inject
|
||||
SimpleObjects simpleObjects;
|
||||
|
||||
// endregion
|
||||
}
|
||||
|
@ -48,17 +48,16 @@ import org.apache.isis.applib.util.ObjectContracts;
|
||||
@DomainObjectLayout(bookmarking = BookmarkPolicy.AS_ROOT, cssClassFa = "fa-flag")
|
||||
public class SimpleObject implements Comparable<SimpleObject> {
|
||||
|
||||
|
||||
// region > identificatiom
|
||||
public TranslatableString title() {
|
||||
return TranslatableString.tr("Object: {name}", "name", getName());
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > name (property)
|
||||
|
||||
private String name;
|
||||
|
||||
// region > identificatiom
|
||||
public TranslatableString title() {
|
||||
return TranslatableString.tr("Object: {name}", "name", getName());
|
||||
}
|
||||
|
||||
@javax.jdo.annotations.Column(allowsNull = "false", length = 40)
|
||||
@Title(sequence = "1")
|
||||
|
@ -33,6 +33,14 @@ import org.apache.isis.applib.services.i18n.TranslatableString;
|
||||
@DomainService(repositoryFor = SimpleObject.class)
|
||||
@DomainServiceLayout(menuOrder = "10")
|
||||
public class SimpleObjects {
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
|
||||
@javax.inject.Inject
|
||||
DomainObjectContainer container;
|
||||
|
||||
// endregion
|
||||
|
||||
// region > title
|
||||
public TranslatableString title() {
|
||||
@ -81,12 +89,4 @@ public class SimpleObjects {
|
||||
return obj;
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
|
||||
@javax.inject.Inject
|
||||
DomainObjectContainer container;
|
||||
|
||||
// endregion
|
||||
}
|
||||
|
@ -22,6 +22,15 @@ import domainapp.dom.modules.simple.SimpleObjects;
|
||||
|
||||
public class SimpleObjectCreate extends FixtureScript {
|
||||
|
||||
// endregion
|
||||
|
||||
|
||||
// region > simpleObject (output)
|
||||
private SimpleObject simpleObject;
|
||||
|
||||
@javax.inject.Inject
|
||||
private SimpleObjects simpleObjects;
|
||||
|
||||
// region > name (input)
|
||||
private String name;
|
||||
|
||||
@ -36,13 +45,7 @@ public class SimpleObjectCreate extends FixtureScript {
|
||||
this.name = name;
|
||||
return this;
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
|
||||
// region > simpleObject (output)
|
||||
private SimpleObject simpleObject;
|
||||
|
||||
|
||||
/**
|
||||
* The created simple object (output).
|
||||
*/
|
||||
@ -62,8 +65,5 @@ public class SimpleObjectCreate extends FixtureScript {
|
||||
// also make available to UI
|
||||
ec.addResult(this, simpleObject);
|
||||
}
|
||||
|
||||
@javax.inject.Inject
|
||||
private SimpleObjects simpleObjects;
|
||||
|
||||
|
||||
}
|
||||
|
@ -20,13 +20,12 @@ import org.apache.isis.applib.services.jdosupport.IsisJdoSupport;
|
||||
|
||||
public class SimpleObjectsTearDown extends FixtureScript {
|
||||
|
||||
@javax.inject.Inject
|
||||
private IsisJdoSupport isisJdoSupport;
|
||||
|
||||
@Override
|
||||
protected void execute(ExecutionContext executionContext) {
|
||||
isisJdoSupport.executeUpdate("delete from \"simple\".\"SimpleObject\"");
|
||||
}
|
||||
|
||||
|
||||
@javax.inject.Inject
|
||||
private IsisJdoSupport isisJdoSupport;
|
||||
|
||||
|
||||
}
|
||||
|
@ -32,13 +32,18 @@ public class RecreateSimpleObjects extends FixtureScript {
|
||||
public final List<String> names = Collections.unmodifiableList(Arrays.asList("Foo", "Bar", "Baz",
|
||||
"Frodo", "Froyo", "Fizz", "Bip", "Bop", "Bang", "Boo"));
|
||||
|
||||
public RecreateSimpleObjects() {
|
||||
withDiscoverability(Discoverability.DISCOVERABLE);
|
||||
}
|
||||
|
||||
// region > number (optional input)
|
||||
private Integer number;
|
||||
|
||||
// endregion
|
||||
|
||||
// region > simpleObjects (output)
|
||||
private final List<SimpleObject> simpleObjects = Lists.newArrayList();
|
||||
|
||||
public RecreateSimpleObjects() {
|
||||
withDiscoverability(Discoverability.DISCOVERABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* The number of objects to create, up to 10; optional, defaults to 3.
|
||||
*/
|
||||
@ -50,12 +55,7 @@ public class RecreateSimpleObjects extends FixtureScript {
|
||||
this.number = number;
|
||||
return this;
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > simpleObjects (output)
|
||||
private final List<SimpleObject> simpleObjects = Lists.newArrayList();
|
||||
|
||||
|
||||
/**
|
||||
* The simpleobjects created by this fixture (output).
|
||||
*/
|
||||
|
Reference in New Issue
Block a user