Java 类java.awt.peer.FileDialogPeer 实例源码
项目:javify
文件:FileDialog.java
/**
* Sets the directory for this file dialog.
*
* @param dir The new directory for this file dialog.
*/
public synchronized void
setDirectory(String dir)
{
this.dir = dir;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setDirectory (dir);
}
}
项目:javify
文件:FileDialog.java
/**
* Sets the selected file for this dialog.
*
* @param file The selected file for this dialog.
*/
public synchronized void
setFile(String file)
{
if ("".equals(file))
this.file = null;
else
this.file = file;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setFile (file);
}
}
项目:javify
文件:FileDialog.java
/**
* Sets the filename filter used by this dialog.
*
* @param filter The new filename filter for this file dialog box.
*/
public synchronized void
setFilenameFilter(FilenameFilter filter)
{
this.filter = filter;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setFilenameFilter (filter);
}
}
项目:jvm-stm
文件:FileDialog.java
/**
* Sets the directory for this file dialog.
*
* @param dir The new directory for this file dialog.
*/
public synchronized void
setDirectory(String dir)
{
this.dir = dir;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setDirectory (dir);
}
}
项目:jvm-stm
文件:FileDialog.java
/**
* Sets the selected file for this dialog.
*
* @param file The selected file for this dialog.
*/
public synchronized void
setFile(String file)
{
if ("".equals(file))
this.file = null;
else
this.file = file;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setFile (file);
}
}
项目:jvm-stm
文件:FileDialog.java
/**
* Sets the filename filter used by this dialog.
*
* @param filter The new filename filter for this file dialog box.
*/
public synchronized void
setFilenameFilter(FilenameFilter filter)
{
this.filter = filter;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setFilenameFilter (filter);
}
}
项目:JamVM-PH
文件:FileDialog.java
/**
* Sets the directory for this file dialog.
*
* @param dir The new directory for this file dialog.
*/
public synchronized void
setDirectory(String dir)
{
this.dir = dir;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setDirectory (dir);
}
}
项目:JamVM-PH
文件:FileDialog.java
/**
* Sets the selected file for this dialog.
*
* @param file The selected file for this dialog.
*/
public synchronized void
setFile(String file)
{
if ("".equals(file))
this.file = null;
else
this.file = file;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setFile (file);
}
}
项目:JamVM-PH
文件:FileDialog.java
/**
* Sets the filename filter used by this dialog.
*
* @param filter The new filename filter for this file dialog box.
*/
public synchronized void
setFilenameFilter(FilenameFilter filter)
{
this.filter = filter;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setFilenameFilter (filter);
}
}
项目:classpath
文件:FileDialog.java
/**
* Sets the directory for this file dialog.
*
* @param dir The new directory for this file dialog.
*/
public synchronized void
setDirectory(String dir)
{
this.dir = dir;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setDirectory (dir);
}
}
项目:classpath
文件:FileDialog.java
/**
* Sets the selected file for this dialog.
*
* @param file The selected file for this dialog.
*/
public synchronized void
setFile(String file)
{
if ("".equals(file))
this.file = null;
else
this.file = file;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setFile (file);
}
}
项目:classpath
文件:FileDialog.java
/**
* Sets the filename filter used by this dialog.
*
* @param filter The new filename filter for this file dialog box.
*/
public synchronized void
setFilenameFilter(FilenameFilter filter)
{
this.filter = filter;
if (peer != null)
{
FileDialogPeer f = (FileDialogPeer) peer;
f.setFilenameFilter (filter);
}
}
项目:incubator-netbeans
文件:UtilitiesTest.java
protected FileDialogPeer createFileDialog(FileDialog target) throws HeadlessException {
throw new IllegalStateException("Method not implemented");
}
项目:javify
文件:XToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
// TODO: Implement this.
throw new UnsupportedOperationException("Not yet implemented.");
}
项目:javify
文件:GtkToolkit.java
protected FileDialogPeer createFileDialog (FileDialog fd)
{
checkHeadless();
return new GtkFileDialogPeer (fd);
}
项目:javify
文件:QtToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
return new QtFileDialogPeer( this, target );
}
项目:javify
文件:HeadlessToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
throw new HeadlessException();
}
项目:jvm-stm
文件:XToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
// TODO: Implement this.
throw new UnsupportedOperationException("Not yet implemented.");
}
项目:jvm-stm
文件:GtkToolkit.java
protected FileDialogPeer createFileDialog (FileDialog fd)
{
checkHeadless();
return new GtkFileDialogPeer (fd);
}
项目:jvm-stm
文件:QtToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
return new QtFileDialogPeer( this, target );
}
项目:jvm-stm
文件:HeadlessToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
throw new HeadlessException();
}
项目:cn1
文件:HeadlessToolkit.java
@Override
protected FileDialogPeer createFileDialog(FileDialog a0) throws HeadlessException {
throw new HeadlessException();
}
项目:JamVM-PH
文件:XToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
// TODO: Implement this.
throw new UnsupportedOperationException("Not yet implemented.");
}
项目:JamVM-PH
文件:GtkToolkit.java
protected FileDialogPeer createFileDialog (FileDialog fd)
{
checkHeadless();
return new GtkFileDialogPeer (fd);
}
项目:JamVM-PH
文件:QtToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
return new QtFileDialogPeer( this, target );
}
项目:JamVM-PH
文件:HeadlessToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
throw new HeadlessException();
}
项目:GhostAWT
文件:GhostToolkit.java
@Override
protected FileDialogPeer createFileDialog(FileDialog target) throws HeadlessException {
return new GFileDialogPeer(target);
}
项目:awtonandroid
文件:AndroidToolkit.java
@Override
protected FileDialogPeer createFileDialog(FileDialog arg0) {
throw new UnsupportedOperationException("Not yet implemented.");
//return null;
}
项目:classpath
文件:XToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
// TODO: Implement this.
throw new UnsupportedOperationException("Not yet implemented.");
}
项目:classpath
文件:GtkToolkit.java
protected FileDialogPeer createFileDialog (FileDialog fd)
{
checkHeadless();
return new GtkFileDialogPeer (fd);
}
项目:classpath
文件:QtToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
return new QtFileDialogPeer( this, target );
}
项目:classpath
文件:HeadlessToolkit.java
protected FileDialogPeer createFileDialog(FileDialog target)
{
throw new HeadlessException();
}
项目:freeVM
文件:HeadlessToolkit.java
@Override
protected FileDialogPeer createFileDialog(FileDialog a0) throws HeadlessException {
throw new HeadlessException();
}
项目:OpenJSharp
文件:FileDialog.java
/**
* Sets the directory of this file dialog window to be the
* specified directory. Specifying a <code>null</code> or an
* invalid directory implies an implementation-defined default.
* This default will not be realized, however, until the user
* has selected a file. Until this point, <code>getDirectory()</code>
* will return the value passed into this method.
* <p>
* Specifying "" as the directory is exactly equivalent to
* specifying <code>null</code> as the directory.
*
* @param dir the specified directory
* @see java.awt.FileDialog#getDirectory
*/
public void setDirectory(String dir) {
this.dir = (dir != null && dir.equals("")) ? null : dir;
FileDialogPeer peer = (FileDialogPeer)this.peer;
if (peer != null) {
peer.setDirectory(this.dir);
}
}
项目:OpenJSharp
文件:FileDialog.java
/**
* Sets the selected file for this file dialog window to be the
* specified file. This file becomes the default file if it is set
* before the file dialog window is first shown.
* <p>
* When the dialog is shown, the specified file is selected. The kind of
* selection depends on the file existence, the dialog type, and the native
* platform. E.g., the file could be highlighted in the file list, or a
* file name editbox could be populated with the file name.
* <p>
* This method accepts either a full file path, or a file name with an
* extension if used together with the {@code setDirectory} method.
* <p>
* Specifying "" as the file is exactly equivalent to specifying
* {@code null} as the file.
*
* @param file the file being set
* @see #getFile
* @see #getFiles
*/
public void setFile(String file) {
this.file = (file != null && file.equals("")) ? null : file;
FileDialogPeer peer = (FileDialogPeer)this.peer;
if (peer != null) {
peer.setFile(this.file);
}
}
项目:OpenJSharp
文件:FileDialog.java
/**
* Sets the filename filter for this file dialog window to the
* specified filter.
* Filename filters do not function in Sun's reference
* implementation for Microsoft Windows.
*
* @param filter the specified filter
* @see java.io.FilenameFilter
* @see java.awt.FileDialog#getFilenameFilter
*/
public synchronized void setFilenameFilter(FilenameFilter filter) {
this.filter = filter;
FileDialogPeer peer = (FileDialogPeer)this.peer;
if (peer != null) {
peer.setFilenameFilter(filter);
}
}
项目:jdk8u-jdk
文件:FileDialog.java
/**
* Sets the directory of this file dialog window to be the
* specified directory. Specifying a <code>null</code> or an
* invalid directory implies an implementation-defined default.
* This default will not be realized, however, until the user
* has selected a file. Until this point, <code>getDirectory()</code>
* will return the value passed into this method.
* <p>
* Specifying "" as the directory is exactly equivalent to
* specifying <code>null</code> as the directory.
*
* @param dir the specified directory
* @see java.awt.FileDialog#getDirectory
*/
public void setDirectory(String dir) {
this.dir = (dir != null && dir.equals("")) ? null : dir;
FileDialogPeer peer = (FileDialogPeer)this.peer;
if (peer != null) {
peer.setDirectory(this.dir);
}
}
项目:jdk8u-jdk
文件:FileDialog.java
/**
* Sets the selected file for this file dialog window to be the
* specified file. This file becomes the default file if it is set
* before the file dialog window is first shown.
* <p>
* When the dialog is shown, the specified file is selected. The kind of
* selection depends on the file existence, the dialog type, and the native
* platform. E.g., the file could be highlighted in the file list, or a
* file name editbox could be populated with the file name.
* <p>
* This method accepts either a full file path, or a file name with an
* extension if used together with the {@code setDirectory} method.
* <p>
* Specifying "" as the file is exactly equivalent to specifying
* {@code null} as the file.
*
* @param file the file being set
* @see #getFile
* @see #getFiles
*/
public void setFile(String file) {
this.file = (file != null && file.equals("")) ? null : file;
FileDialogPeer peer = (FileDialogPeer)this.peer;
if (peer != null) {
peer.setFile(this.file);
}
}
项目:jdk8u-jdk
文件:FileDialog.java
/**
* Sets the filename filter for this file dialog window to the
* specified filter.
* Filename filters do not function in Sun's reference
* implementation for Microsoft Windows.
*
* @param filter the specified filter
* @see java.io.FilenameFilter
* @see java.awt.FileDialog#getFilenameFilter
*/
public synchronized void setFilenameFilter(FilenameFilter filter) {
this.filter = filter;
FileDialogPeer peer = (FileDialogPeer)this.peer;
if (peer != null) {
peer.setFilenameFilter(filter);
}
}
项目:openjdk-jdk10
文件:FileDialog.java
/**
* Sets the directory of this file dialog window to be the
* specified directory. Specifying a {@code null} or an
* invalid directory implies an implementation-defined default.
* This default will not be realized, however, until the user
* has selected a file. Until this point, {@code getDirectory()}
* will return the value passed into this method.
* <p>
* Specifying "" as the directory is exactly equivalent to
* specifying {@code null} as the directory.
*
* @param dir the specified directory
* @see java.awt.FileDialog#getDirectory
*/
public void setDirectory(String dir) {
this.dir = (dir != null && dir.equals("")) ? null : dir;
FileDialogPeer peer = (FileDialogPeer)this.peer;
if (peer != null) {
peer.setDirectory(this.dir);
}
}