net.anotheria.anosite.gen.shared.data.IActionCommandDefDefinition Maven / Gradle / Ivy
/**
********************************************************************************
*** IActionCommandDefDefinition.java ***
*** generated by AnoSiteGenerator (ASG), Version: 3.2.2 ***
*** Copyright (C) 2005 - 2023 Anotheria.net, www.anotheria.net ***
*** All Rights Reserved. ***
********************************************************************************
*** Don't edit this code, if you aren't sure ***
*** that you do exactly know what you are doing! ***
*** It's better to invest time in the generator, as into the generated code. ***
********************************************************************************
*/
package net.anotheria.anosite.gen.shared.data;
public interface IActionCommandDefDefinition{
/**
* Constant for value Redirect.
*/
int Redirect = 1;
/**
* Constant for value Forward.
*/
int Forward = 2;
/**
* Constant for value none.
*/
int none = 3;
/**
* Constant for value name Redirect.
*/
String Redirect_NAME = "Redirect";
/**
* Constant for value name Forward.
*/
String Forward_NAME = "Forward";
/**
* Constant for value name none.
*/
String none_NAME = "none";
int ACTIONCOMMANDDEF_VALUES[] = {
Redirect,
Forward,
none,
};
String ACTIONCOMMANDDEF_NAMES[] = {
Redirect_NAME,
Forward_NAME,
none_NAME,
};
}