Files
Brainstorm/Foundation TCV/src/com/foundation/tcv/controller/ISessionViewController.java

21 lines
961 B
Java
Raw Normal View History

2014-05-30 10:31:51 -07:00
/*
* 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//