Repository: incubator-netbeans Updated Branches: refs/heads/master b2f96f0b1 -> a7f3fe78e
[NETBEANS-54] Module Review j2ee.metadata.model.support Project: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/commit/2a5f1c8c Tree: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/tree/2a5f1c8c Diff: http://git-wip-us.apache.org/repos/asf/incubator-netbeans/diff/2a5f1c8c Branch: refs/heads/master Commit: 2a5f1c8c7ef37cf8116d0ddf685add294baaa69c Parents: 7935ee1 Author: Josh Juneau <[email protected]> Authored: Mon Oct 9 09:17:37 2017 -0500 Committer: Josh Juneau <[email protected]> Committed: Mon Oct 9 09:17:37 2017 -0500 ---------------------------------------------------------------------- .../model/api/support/annotation/Table.javax | 31 ++++++++++++++++---- 1 file changed, 25 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-netbeans/blob/2a5f1c8c/j2ee.metadata.model.support/test/unit/src/org/netbeans/modules/j2ee/metadata/model/api/support/annotation/Table.javax ---------------------------------------------------------------------- diff --git a/j2ee.metadata.model.support/test/unit/src/org/netbeans/modules/j2ee/metadata/model/api/support/annotation/Table.javax b/j2ee.metadata.model.support/test/unit/src/org/netbeans/modules/j2ee/metadata/model/api/support/annotation/Table.javax index f22aa0e..0eae311 100644 --- a/j2ee.metadata.model.support/test/unit/src/org/netbeans/modules/j2ee/metadata/model/api/support/annotation/Table.javax +++ b/j2ee.metadata.model.support/test/unit/src/org/netbeans/modules/j2ee/metadata/model/api/support/annotation/Table.javax @@ -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; @@ -72,7 +91,7 @@ public class __NAME__ implements Serializable { @Column(name = "Q") private String q; - + /** Creates a new instance of Table__NUM__ */ public __NAME__() { } @@ -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 */ @@ -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; @@ -389,7 +408,7 @@ 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 */ @@ -397,5 +416,5 @@ public class __NAME__ implements Serializable { public String toString() { return "__NAME__[id=" + id + "]"; } - + }
