This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 173406
Collapse All | Expand All

(-)a/java.project/apichanges.xml (+17 lines)
Lines 106-111 Link Here
106
    <!-- ACTUAL CHANGES BEGIN HERE: -->
106
    <!-- ACTUAL CHANGES BEGIN HERE: -->
107
107
108
    <changes>
108
    <changes>
109
        <change id="JavaRunner-runtime-encoding">
110
            <api name="general"/>
111
            <summary>Added JavaRunner.PROP_RUNTIME_ENCODING property for COS Runner</summary>
112
            <version major="1" minor="28"/>
113
            <date day="12" month="10" year="2009"/>
114
            <author login="tzezula"/>
115
            <compatibility addition="yes"/>
116
            <description>
117
                <p>
118
                    Added <code>JavaRunner.PROP_RUNTIME_ENCODING</code> property to allow project types
119
                    to pass the runtime encoding to jvm.
120
                </p>
121
            </description>
122
            <class package="org.netbeans.api.java.project.runner" name="JavaRunner"/>
123
            <issue number="173406"/>
124
        </change>
125
109
        <change id="source-group-modifier-constants">
126
        <change id="source-group-modifier-constants">
110
            <api name="general"/>
127
            <api name="general"/>
111
            <summary>Constants for SourceGroupModifier</summary>
128
            <summary>Constants for SourceGroupModifier</summary>
(-)a/java.project/manifest.mf (-1 / +1 lines)
Lines 3-9 Link Here
3
OpenIDE-Module-Layer: org/netbeans/modules/java/project/layer.xml
3
OpenIDE-Module-Layer: org/netbeans/modules/java/project/layer.xml
4
OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/java/project/Bundle.properties
4
OpenIDE-Module-Localizing-Bundle: org/netbeans/modules/java/project/Bundle.properties
5
OpenIDE-Module-Needs: javax.script.ScriptEngine.freemarker
5
OpenIDE-Module-Needs: javax.script.ScriptEngine.freemarker
6
OpenIDE-Module-Specification-Version: 1.27
6
OpenIDE-Module-Specification-Version: 1.28
7
OpenIDE-Module-Recommends: org.netbeans.spi.java.project.runner.JavaRunnerImplementation
7
OpenIDE-Module-Recommends: org.netbeans.spi.java.project.runner.JavaRunnerImplementation
8
AutoUpdate-Show-In-Client: false
8
AutoUpdate-Show-In-Client: false
9
9
(-)a/java.project/src/org/netbeans/api/java/project/runner/JavaRunner.java (+8 lines)
Lines 217-222 Link Here
217
     */
217
     */
218
    public static final String PROP_APPLICATION_ARGS = "application.args";
218
    public static final String PROP_APPLICATION_ARGS = "application.args";
219
219
220
    /**
221
     * Runtime file encoding passed to the jvm (-Dfile.encoding).
222
     * If not given the {@link org.netbeans.api.queries.FileEncodingQuery} is used
223
     * to obtain the encoding.
224
     * @since 1.28
225
     */
226
    public static final String PROP_RUNTIME_ENCODING = "runtime.encoding";  //NOI18N
227
220
    private static final Logger LOG = Logger.getLogger(JavaRunner.class.getName());
228
    private static final Logger LOG = Logger.getLogger(JavaRunner.class.getName());
221
229
222
    /**
230
    /**

Return to bug 173406