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 225439
Collapse All | Expand All

(-)a/openide.io/apichanges.xml (+18 lines)
Lines 107-112 Link Here
107
    <!-- ACTUAL CHANGES BEGIN HERE: -->
107
    <!-- ACTUAL CHANGES BEGIN HERE: -->
108
108
109
<changes>
109
<changes>
110
    <change id="coloredLoggingText">
111
      <api name="io"/>
112
      <summary>Added LOG_SUCCESS, LOG_FAILURE, LOG_WARNING and LOG_DEBUG into IOColors.OutputType to be able to specify a color of logging messages.</summary>
113
      <version major="1" minor="40"/>
114
      <date day="25" month="4" year="2013"/>
115
      <author login="jhavlin"/>
116
      <compatibility addition="yes" binary="compatible" semantic="compatible" />
117
      <description>
118
          <p>
119
              Added enum elements <code>LOG_SUCCESS, LOG_FAILURE, LOG_WARNING
120
              and LOG_DEBUG</code> into <code>IOColors.OutputType</code>
121
              that can be passed to get/setColor methods to have access
122
              to color of standard logging messages.
123
          </p>
124
      </description>
125
      <class package="org.openide.windows" name="IOColors"/>
126
      <issue number="225439" />
127
    </change>
110
    <change id="coloredInput">
128
    <change id="coloredInput">
111
      <api name="io"/>
129
      <api name="io"/>
112
      <summary>Added IOColors.OutputType.INPUT to be able to specify a color of input text.</summary>
130
      <summary>Added IOColors.OutputType.INPUT to be able to specify a color of input text.</summary>
(-)a/openide.io/manifest.mf (-1 / +1 lines)
Lines 1-6 Link Here
1
Manifest-Version: 1.0
1
Manifest-Version: 1.0
2
OpenIDE-Module: org.openide.io
2
OpenIDE-Module: org.openide.io
3
OpenIDE-Module-Specification-Version: 1.39
3
OpenIDE-Module-Specification-Version: 1.40
4
OpenIDE-Module-Localizing-Bundle: org/openide/io/Bundle.properties
4
OpenIDE-Module-Localizing-Bundle: org/openide/io/Bundle.properties
5
OpenIDE-Module-Recommends: org.openide.windows.IOProvider, org.openide.windows.IOContainer$Provider
5
OpenIDE-Module-Recommends: org.openide.windows.IOProvider, org.openide.windows.IOContainer$Provider
6
AutoUpdate-Essential-Module: true
6
AutoUpdate-Essential-Module: true
(-)a/openide.io/src/org/openide/windows/IOColors.java (+16 lines)
Lines 91-96 Link Here
91
        /** input text
91
        /** input text
92
         * @since 1.39 */
92
         * @since 1.39 */
93
        INPUT,
93
        INPUT,
94
        /** Info about success. Change is not guaranteed to affect colored
95
         * output written in the past.
96
         * @since 1.40 */
97
        LOG_SUCCESS,
98
        /** Info about failure. Change is not guaranteed to affect colored
99
         * output written in the past.
100
         * @since 1.40 */
101
        LOG_FAILURE,
102
        /**Info about warning. Change is not guaranteed to affect colored
103
         * output written in the past.
104
         * @since 1.40 */
105
        LOG_WARNING,
106
        /** Debugging info. Change is not guaranteed to affect colored
107
         * output written in the past.
108
         * @since 1.40 */
109
        LOG_DEBUG
94
    }
110
    }
95
111
96
    /**
112
    /**

Return to bug 225439