Field DIRECTORY_CHANGED_PROPERTY
Field type:
java.lang.String
Member of:
javax.swing.JFileChooser
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
if(prop == JFileChooser.DIRECTORY_CHANGED_PROPERTY || prop == JFileChooser.FILE_VIEW_CHANGED_PROPERTY || prop == JFileChooser.FILE_FILTER_CHANGED_PROPERTY || prop == JFileChooser.FILE_HIDING_CHANGED_PROPERTY || prop == JFileChooser.FILE_SELECTION_MODE_CHANGED_PROPERTY)
2
if (mode == jfc.DIRECTORIES_ONLY && jfc.DIRECTORY_CHANGED_PROPERTY.equals(e.getPropertyName())) {
3
} else if (JFileChooser.DIRECTORY_CHANGED_PROPERTY.equals(e.getPropertyName())) {
4
JFileChooser.DIRECTORY_CHANGED_PROPERTY, new PropertyChangeListener()
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.