Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 package com.generalrobotix.ui.item;
00020
00021 import com.generalrobotix.ui.GrxPluginManager;
00022
00023 @SuppressWarnings("serial")
00024 public class GrxPythonScriptItem extends GrxTextItem {
00025 public static final String TITLE = "Python Script";
00026 public static final String DEFAULT_DIR = "/../script";
00027 public static final String FILE_EXTENSION = "py";
00028
00029 public GrxPythonScriptItem(String name, GrxPluginManager manager) {
00030 super(name, manager);
00031 setExclusive(true);
00032 }
00033 }