org.jclarion.clarion.file.FilenameFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clarion-runtime Show documentation
Show all versions of clarion-runtime Show documentation
JClarion runtime environment
The newest version!
package org.jclarion.clarion.file;
import java.io.File;
import org.jclarion.clarion.swing.gui.FileServer;
public class FilenameFactory {
private static FilenameFactory instance=new FilenameFactory();
public static FilenameFactory getInstance()
{
return instance;
}
public static void setInstance(FilenameFactory factory)
{
instance=factory;
}
public File getFile(String name)
{
return new File(FileServer.clientPrep(name));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy