Skip to content

Commit

Permalink
[NETBEANS-54] Module Review j2ee.metadata.model.support
Browse files Browse the repository at this point in the history
  • Loading branch information
juneau001 committed Oct 9, 2017
1 parent 7935ee1 commit 2a5f1c8
Showing 1 changed file with 25 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

import java.io.Serializable;
import java.math.BigInteger;
import java.util.Date;
Expand Down Expand Up @@ -72,7 +91,7 @@ public class __NAME__ implements Serializable {

@Column(name = "Q")
private String q;

/** Creates a new instance of Table__NUM__ */
public __NAME__() {
}
Expand Down Expand Up @@ -358,7 +377,7 @@ public class __NAME__ implements Serializable {
}

/**
* Returns a hash code value for the object. This implementation computes
* Returns a hash code value for the object. This implementation computes
* a hash code value based on the id fields in this object.
* @return a hash code value for this object
*/
Expand All @@ -370,8 +389,8 @@ public class __NAME__ implements Serializable {
}

/**
* Determines whether another object is equal to this Table__NUM__. The result is
* <code>true</code> if and only if the argument is not null and is a Table__NUM__ object that
* Determines whether another object is equal to this Table__NUM__. The result is
* <code>true</code> if and only if the argument is not null and is a Table__NUM__ object that
* has the same id field values as this object.
* @param object the reference object with which to compare
* @return <code>true</code> if this object is the same as the argument;
Expand All @@ -389,13 +408,13 @@ public class __NAME__ implements Serializable {
}

/**
* Returns a string representation of the object. This implementation constructs
* Returns a string representation of the object. This implementation constructs
* that representation based on the id fields.
* @return a string representation of the object
*/
@Override
public String toString() {
return "__NAME__[id=" + id + "]";
}

}

0 comments on commit 2a5f1c8

Please sign in to comment.