(no commit message)
[utils] / system / general / src / test / java / org / wamblee / system / adapters / X7.java
index e238b3b015d099514b1b4ec55ecf3dc1ac6f963b..7f10210ff37dd5f334b5dce5a3f0d17555821cb9 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * Copyright 2008 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.
 package org.wamblee.system.adapters;
 
 /**
- * DOCUMENT ME!
- *
+ * 
  * @author $author$
  * @version $Revision$
 */
+ */
 public class X7 {
-    /**
-     * DOCUMENT ME!
-     */
     private String host;
 
-    /**
-     * DOCUMENT ME!
-     */
     private Integer port;
 
-    /**
-     * DOCUMENT ME!
-     */
     private Boolean flag;
 
     /**
      * Creates a new X7 object.
-     *
-     * @param aBoolean DOCUMENT ME!
+     * 
      */
     public X7(Boolean aBoolean) {
         flag = aBoolean;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     public Boolean getBoolean() {
         return flag;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     public Integer getPort() {
         return port;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aPort DOCUMENT ME!
-     */
     public void setPort(Integer aPort) {
         port = aPort;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     public String getHost() {
         return host;
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aHost DOCUMENT ME!
-     */
     public void setHost(String aHost) {
         host = aHost;
     }