m_PlaceCurrent = null;
m_PlaceClipboard = null;
customer = null;
try {
SentenceList sent = new StaticSentence(
app.getSession(),
"SELECT ID, NAME, IMAGE FROM FLOORS ORDER BY NAME",
null,
new SerializerReadClass(Floor.class));
m_afloors = sent.list();
} catch (BasicException eD) {
m_afloors = new ArrayList<Floor>();
}
try {
SentenceList sent = new StaticSentence(
app.getSession(),
"SELECT ID, NAME, X, Y, FLOOR FROM PLACES ORDER BY FLOOR",
null,
new SerializerReadClass(Place.class));
m_aplaces = sent.list();
} catch (BasicException eD) {
m_aplaces = new ArrayList<Place>();
}
initComponents();