X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Ftest%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fcontainer%2FApplication.java;h=b02f9357870e587b7557c578e5572adda003e48c;hb=9573613928f58ec9333b900187731408d5eb4f9f;hp=9e4a56b4569ee54e49b464ce42c67f713bc1a339;hpb=f4d446b84fa1a38ed83cd157f79fdb8233822145;p=utils diff --git a/system/general/src/test/java/org/wamblee/system/container/Application.java b/system/general/src/test/java/org/wamblee/system/container/Application.java index 9e4a56b4..b02f9357 100644 --- a/system/general/src/test/java/org/wamblee/system/container/Application.java +++ b/system/general/src/test/java/org/wamblee/system/container/Application.java @@ -1,12 +1,12 @@ /* - * Copyright 2007 the original author or authors. - * + * Copyright 2005-2010 the original author or authors. + * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. @@ -23,32 +23,18 @@ import org.wamblee.system.core.Scope; import org.wamblee.test.EventTracker; - /** - * DOCUMENT ME! - * + * * @author $author$ * @version $Revision$ - */ + */ public class Application extends AbstractComponent { - /** - * DOCUMENT ME! - */ private EventTracker tracker; - /** - * DOCUMENT ME! - */ private String string; - /** - * DOCUMENT ME! - */ private Integer integer; - /** - * DOCUMENT ME! - */ private double random; /** @@ -60,8 +46,7 @@ public class Application extends AbstractComponent { /** * Creates a new Application object. - * - * @param aName DOCUMENT ME! + * */ public Application(String aName) { this(aName, ""); @@ -69,9 +54,7 @@ public class Application extends AbstractComponent { /** * Creates a new Application object. - * - * @param aName DOCUMENT ME! - * @param aPrefix DOCUMENT ME! + * */ public Application(String aName, String aPrefix) { super(aName, new ProvidedInterface[0], required(false, aPrefix)); @@ -80,8 +63,7 @@ public class Application extends AbstractComponent { /** * Creates a new Application object. - * - * @param aIsOptinal DOCUMENT ME! + * */ public Application(boolean aIsOptinal) { super("application", new ProvidedInterface[0], required(true, "")); @@ -89,98 +71,54 @@ public class Application extends AbstractComponent { /** * Creates a new Application object. - * - * @param aTracker DOCUMENT ME! + * */ public Application(EventTracker aTracker) { this(); tracker = aTracker; } - /** - * DOCUMENT ME! - * - * @param aOptional DOCUMENT ME! - * @param aPrefix DOCUMENT ME! - * - * @return DOCUMENT ME! - */ public static RequiredInterface[] required(boolean aOptional, String aPrefix) { return new RequiredInterface[] { new DefaultRequiredInterface(aPrefix + "string", String.class, aOptional), new DefaultRequiredInterface(aPrefix + "integer", Integer.class, - aOptional) - }; + aOptional) }; } - /** - * DOCUMENT ME! - * - * @param aOptional DOCUMENT ME! - * - * @return DOCUMENT ME! - */ public static RequiredInterface[] required(boolean aOptional) { return required(aOptional, ""); } - /** - * DOCUMENT ME! - * - * @param aScope DOCUMENT ME! - * - * @return DOCUMENT ME! - */ @Override public Object doStart(Scope aScope) { track("start." + getName()); - string = aScope.getInterfaceImplementation(getRequiredInterfaces() - .get(0).getProvider(), String.class); - integer = aScope.getInterfaceImplementation(getRequiredInterfaces() - .get(1).getProvider(), Integer.class); + string = aScope.getInterfaceImplementation(getRequiredInterfaces().get( + 0).getProvider(), String.class); + integer = aScope.getInterfaceImplementation(getRequiredInterfaces() + .get(1).getProvider(), Integer.class); return random; } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - */ public String getString() { return string; } - /** - * DOCUMENT ME! - * - * @return DOCUMENT ME! - */ public Integer getInteger() { return integer; } - /** - * DOCUMENT ME! - * - * @param aRuntime DOCUMENT ME! - */ @Override public void doStop(Object aRuntime) { track("stop." + getName()); if (random != (Double) aRuntime) { - throw new IllegalArgumentException("Wrong runtime: expected " - + random + " but got " + aRuntime); + throw new IllegalArgumentException("Wrong runtime: expected " + + random + " but got " + aRuntime); } } - /** - * DOCUMENT ME! - * - * @param aString DOCUMENT ME! - */ private void track(String aString) { if (tracker == null) { return;