blob: df24eae83728b7e12716e2d4c9e39dff87571a0b [file] [log] [blame]
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
#
# Copyright 2010 Oracle and/or its affiliates. All rights reserved.
#
# Oracle and Java are registered trademarks of Oracle and/or its affiliates.
# Other names may be trademarks of their respective owners.
#
# The contents of this file are subject to the terms of either the GNU
# General Public License Version 2 only ("GPL") or the Common
# Development and Distribution License("CDDL") (collectively, the
# "License"). You may not use this file except in compliance with the
# License. You can obtain a copy of the License at
# http://www.netbeans.org/cddl-gplv2.html
# or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
# specific language governing permissions and limitations under the
# License. When distributing the software, include this License Header
# Notice in each file and include the License file at
# nbbuild/licenses/CDDL-GPL-2-CP. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the GPL Version 2 section of the License file that
# accompanied this code. If applicable, add the following below the
# License Header, with the fields enclosed by brackets [] replaced by
# your own identifying information:
# "Portions Copyrighted [year] [name of copyright owner]"
#
# If you wish your version of this file to be governed by only the CDDL
# or only the GPL Version 2, indicate your decision by adding
# "[Contributor] elects to include this software in this distribution
# under the [CDDL or GPL Version 2] license." If you do not indicate a
# single choice of license, a recipient has the option to distribute
# your version of this file under either the CDDL, the GPL Version 2 or
# to extend the choice of license to its licensees as provided above.
# However, if you add GPL Version 2 code and therefore, elected the GPL
# Version 2 license, then the option applies only if the new code is
# made subject to such option by the copyright holder.
#
# Contributor(s):
#
# Portions Copyrighted 2010 Sun Microsystems, Inc.
TXT_ProtectedField=Protected Field
TXT_PublicField=Public Field
TXT_PackageField=Package Field
TXT_PublicInnerClass=Public Inner Class
TXT_ProtectedInnerClass=Protected Inner Class
TXT_PackageInnerClass=Package Visible Inner Class
TXT_ReturnCollection=Return of Collection Field
TXT_ReturnArray=Return of Array Field
TXT_ReturnDate=Return of Date or Calendar Field
TXT_AssignmentToCollection=Assignment to Collection Field from Parameter
TXT_AssignmentToArray=Assignment to Array Field from Parameter
TXT_AssignmentToDate=Assignment to Date or Calendar Field from Parameter
TXT_OtherPrivateField=Access of Private Field of Another Object
FIX_EncapsulateField=Encapsulate Field
FIX_MoveInnerToOuter=Move Inner to Outer
FIX_ReplaceWithUC=Replace with java.util.Collections.{0} ({1})
DN_org.netbeans.modules.java.hints.encapsulation.FieldEncapsulation.protectedField=Protected Field
DESC_org.netbeans.modules.java.hints.encapsulation.FieldEncapsulation.protectedField=Warns about existence of protected variables
DN_IgnoreEnumForField=Do not warn about fields of enum type
TP_IgnoreEnumForField=Will not warn about fields that are of enum type
DN_org.netbeans.modules.java.hints.encapsulation.FieldEncapsulation.publicField=Public Field
DESC_org.netbeans.modules.java.hints.encapsulation.FieldEncapsulation.publicField=Warns about existence of public variables
DN_org.netbeans.modules.java.hints.encapsulation.FieldEncapsulation.packageField=Package Field
DESC_org.netbeans.modules.java.hints.encapsulation.FieldEncapsulation.packageField=Warns about existence of package visible variables
DN_org.netbeans.modules.java.hints.encapsulation.FieldEncapsulation.privateField=Access of Private Field of Another Object
DESC_org.netbeans.modules.java.hints.encapsulation.FieldEncapsulation.privateField=Warns about access of private fields of another objects
DN_org.netbeans.modules.java.hints.encapsulation.ClassEncapsulation.publicCls=Public Inner Class
DESC_org.netbeans.modules.java.hints.encapsulation.ClassEncapsulation.publicCls=Warns about existence of public visible inner class
DN_IgnoreEnumForInnerClass=Do not warn about inner enums
TP_IgnoreEnumForInnerClass=Will not warn about inner enums
DN_org.netbeans.modules.java.hints.encapsulation.ClassEncapsulation.protectedCls=Protected Inner Class
DESC_org.netbeans.modules.java.hints.encapsulation.ClassEncapsulation.protectedCls=Warns about existence of protected visible inner class
DN_org.netbeans.modules.java.hints.encapsulation.ClassEncapsulation.packageCls=Package Visible Inner Class
DESC_org.netbeans.modules.java.hints.encapsulation.ClassEncapsulation.packageCls=Warns about existence of package visible inner class
DN_org.netbeans.modules.java.hints.encapsulation.ReturnEncapsulation.collection=Return of Collection Field
DESC_org.netbeans.modules.java.hints.encapsulation.ReturnEncapsulation.collection=Warns about return of collection fields
DN_org.netbeans.modules.java.hints.encapsulation.ReturnEncapsulation.array=Return of Array Field
DESC_org.netbeans.modules.java.hints.encapsulation.ReturnEncapsulation.array=Warns about return of array fields
DN_org.netbeans.modules.java.hints.encapsulation.ReturnEncapsulation.date=Return of Date or Calendar Field
DESC_org.netbeans.modules.java.hints.encapsulation.ReturnEncapsulation.date=Warns about return of java.util.Date or java.util.Calendar fields
DN_org.netbeans.modules.java.hints.encapsulation.ParamEncapsulation.collection=Assignment to Collection Field from Parameter
DESC_org.netbeans.modules.java.hints.encapsulation.ParamEncapsulation.collection=Warns about assignment of java.util.Collection into fields
DN_org.netbeans.modules.java.hints.encapsulation.ParamEncapsulation.array=Assignment to Array Field from Parameter
DESC_org.netbeans.modules.java.hints.encapsulation.ParamEncapsulation.array=Warns about assignment of array into fields
DN_org.netbeans.modules.java.hints.encapsulation.ParamEncapsulation.date=Assignment to Date or Calendar Field from Parameter
DESC_org.netbeans.modules.java.hints.encapsulation.ParamEncapsulation.date=Warns about assignment of java.util.Date or java.util.Calendar into fields