Sha256: e6aa672608f00451f1a3e80cfb04b872bdd0366bf0d9447cd1cfb22aaee97ed5

Contents?: true

Size: 1.11 KB

Versions: 8

Compression:

Stored size: 1.11 KB

Contents

package THE_PACKAGE;

import org.ruboto.Script;
import org.ruboto.ScriptLoader;
import java.io.IOException;

public class THE_RUBOTO_CLASS THE_ACTION THE_ANDROID_CLASS {
    /**
     * Called at the start of onCreate() to prepare the Activity.
     */
    private void preOnCreate() {
        if (!getClass().getSimpleName().equals("RubotoService")) {
          System.out.println("RubotoService preOnCreate(): " + getClass().getName());
          getScriptInfo().setRubyClassName(getClass().getSimpleName());
          JRubyAdapter.setUpJRuby(this);
        }
    }

    private void preOnStartCommand(android.content.Intent intent) {
        if (getClass().getSimpleName().equals("RubotoService")) {
          System.out.println("RubotoService preOnStartCommand(): " + getClass().getName());
          scriptInfo.setFromIntent(intent);
        }
    }

    private void preOnBind(android.content.Intent intent) {
        if (getClass().getSimpleName().equals("RubotoService")) {
          System.out.println("RubotoService preOnBind(): " + getClass().getName());
          scriptInfo.setFromIntent(intent);
        }
    }

THE_METHODS

}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ruboto-1.6.1 assets/src/RubotoService.java
ruboto-1.6.0 assets/src/RubotoService.java
ruboto-1.5.0 assets/src/RubotoService.java
ruboto-1.4.1 assets/src/RubotoService.java
ruboto-1.4.0 assets/src/RubotoService.java
ruboto-1.3.1 assets/src/RubotoService.java
ruboto-1.3.0 assets/src/RubotoService.java
ruboto-1.2.0 assets/src/RubotoService.java