21 lines
961 B
Java
21 lines
961 B
Java
/*
|
|
* Copyright (c) 2005,2009 Declarative Engineering LLC.
|
|
* All rights reserved. This program and the accompanying materials
|
|
* are made available under the terms of the Declarative Engineering LLC
|
|
* verson 1 which accompanies this distribution, and is available at
|
|
* http://declarativeengineering.com/legal/DE_Developer_License_v1.txt
|
|
*/
|
|
package com.foundation.tcv.controller;
|
|
|
|
public interface ISessionViewController {
|
|
public static final int MESSAGE_OPEN_TEMP_FILE = -1;
|
|
public static final int MESSAGE_LOAD_FROM_FILE = -2;
|
|
public static final int MESSAGE_SAVE_TO_FILE = -3;
|
|
public static final int MESSAGE_LOAD_FROM_FILE_STREAMED = -4;
|
|
public static final int MESSAGE_SAVE_TO_FILE_STREAMED = -5;
|
|
public static final int MESSAGE_SAVE_TO_FILES_STREAMED = -6;
|
|
public static final int MESSAGE_COLLECT_FILES_TO_RENAME = -7;
|
|
public static final int MESSAGE_RENAME_FILES = -8;
|
|
|
|
public static final boolean DEBUG = false;
|
|
}//ISessionViewController// |