dmolony-DiskBrowser/src/com/bytezone/diskbrowser/gui/ProdosPreferences.java

21 lines
674 B
Java
Raw Normal View History

2019-09-13 10:07:01 +00:00
package com.bytezone.diskbrowser.gui;
2020-02-08 22:20:08 +00:00
// -----------------------------------------------------------------------------------//
2019-09-13 10:07:01 +00:00
public class ProdosPreferences
2020-02-08 22:20:08 +00:00
// -----------------------------------------------------------------------------------//
2019-09-13 10:07:01 +00:00
{
public boolean sortDirectories;
2020-02-08 22:20:08 +00:00
// ---------------------------------------------------------------------------------//
2019-09-13 10:07:01 +00:00
@Override
public String toString ()
2020-02-08 22:20:08 +00:00
// ---------------------------------------------------------------------------------//
2019-09-13 10:07:01 +00:00
{
StringBuilder text = new StringBuilder ();
2020-02-08 22:20:08 +00:00
text.append (String.format ("Sort directories ...... %s%n", sortDirectories));
2019-09-13 10:07:01 +00:00
return text.toString ();
}
}