/
githubmirror
/
jdk22
ОбзорДокументацияВойти
/
githubmirror
/
jdk22
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
jdk22/
.../jfc/SwingSet2/
..
resources

8301991: Convert l10n properties resource bundles to UTF-8 native

3 года назад
AquaTheme.java

8198990: Move SwingSet2 from closed to OpenJDK

8 лет назад
BezierAnimationPanel.java

8221312: test/jdk/sanity/client/SwingSet/src/ColorChooserDemoTest.java failed

7 лет назад
ButtonDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
CharcoalTheme.java

8198990: Move SwingSet2 from closed to OpenJDK

8 лет назад
ColorChooserDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
ComboBoxDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
ContrastTheme.java

8198990: Move SwingSet2 from closed to OpenJDK

8 лет назад
DemoModule.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
DirectionPanel.java

8237746: Fixing compiler warnings in src/demo/share/jfc

6 лет назад
EmeraldTheme.java

8198990: Move SwingSet2 from closed to OpenJDK

8 лет назад
ExampleFileView.java

8237746: Fixing compiler warnings in src/demo/share/jfc

6 лет назад
FileChooserDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
HtmlDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
InternalFrameDemo.java

7124527: [macosx] SwingSet2, label is not read by VoiceOver when focus is on textfield for Internalframe and Table demo.

3 года назад
LayoutControlPanel.java

8237746: Fixing compiler warnings in src/demo/share/jfc

6 лет назад
ListDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
OptionPaneDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
Permuter.java

8198990: Move SwingSet2 from closed to OpenJDK

8 лет назад
ProgressBarDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
README.txt

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
RubyTheme.java

8198990: Move SwingSet2 from closed to OpenJDK

8 лет назад
ScrollPaneDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
SliderDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
SplitPaneDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
SwingSet2.java

8237746: Fixing compiler warnings in src/demo/share/jfc

6 лет назад
TabbedPaneDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
TableDemo.java

7124527: [macosx] SwingSet2, label is not read by VoiceOver when focus is on textfield for Internalframe and Table demo.

3 года назад
TextAndMnemonicUtils.java

8198990: Move SwingSet2 from closed to OpenJDK

8 лет назад
ToolTipDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
TreeDemo.java

8205137: Remove Applet support from SwingSet2 8205139: Remove Applet support from J2Ddemo

5 лет назад
README.txt
SwingSet2 demonstrates some of the abilities of the Swing User Interface
Toolkit by displaying many of the components in a single showcase application.
Use it to try out different components and features provided by Swing.
 
 
==================================
TO RUN SWINGSET2 AS AN APPLICATION
==================================
 
java -jar SwingSet2.jar
 
 
=========================
TO MODIFY/BUILD SWINGSET2
=========================
 
The full source for the SwingSet2 demo can be found in the "src"
subdirectory. If you wish to play with the source code and try
out your changes, you can compile and run in this "src" directory:
 
javac *.java
 
java SwingSet2
 
You may notice a difference when running SwingSet from your compiled source
(versus running from the packaged JAR file), in that it won't show the
splash screen. This is expected, as the splash screen is shown using the
java.awt.SplashScreen support, which allows specifying a splash screen
image as an attribute in the JAR's manifest file. If you'd like to see the
splash screen with your own compiled version, you can package your classes
into a JAR and specify the splash screen (as outlined in the java.awt.SplashScreen
documentation) or you can specify the splash screen image on the command line:
 
java -splash:resources/images/splash.png SwingSet2
 
 
Note: These instructions assume that this installation's versions of the java
and javac commands are in your path. If they aren't, then you should
either specify the complete path to the commands or update your PATH environment
variable as described in the installation instructions for the
Java(TM) SE Development Kit.