source: java/FramclipsePlugin/src/main/java/com/framsticks/framclipse/editors/EditorType.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain
File size: 322 bytes
Line 
1package com.framsticks.framclipse.editors;
2
3public enum EditorType {
4        FRAMSCRIPT("script"), NEURO("neuro"), EXPDEF("expdef"), STYLE("style"), SHOW("show");
5
6        private final String extension;
7
8        private EditorType(String extension) {
9                this.extension = extension;
10        }
11
12        public String getExtension() {
13                return extension;
14        }
15}
Note: See TracBrowser for help on using the repository browser.