- remove isActive from AppState interface

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7161 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
nor..67 14 years ago
parent 6d27155e86
commit cdd44058d8
  1. 20
      engine/src/core/com/jme3/app/state/AppState.java

@ -63,26 +63,6 @@ public interface AppState {
*/ */
public boolean isInitialized(); public boolean isInitialized();
/**
* Use setEnabled() instead.
* Activate or deactivate the functionality of the <code>AppState</code>.
* The effect of this call depends on implementation. An
* <code>AppState</code> starts as being active by default.
*
* @param active activate the AppState or not.
*/
@Deprecated
public void setActive(boolean active);
/**
* Use isEnabled() instead.
* @return True if the <code>AppState</code> is active, false otherwise.
*
* @see AppState#setActive(boolean)
*/
@Deprecated
public boolean isActive();
/** /**
* Enable or disable the functionality of the <code>AppState</code>. * Enable or disable the functionality of the <code>AppState</code>.
* The effect of this call depends on implementation. An * The effect of this call depends on implementation. An

Loading…
Cancel
Save