using System; using Bridge; using Bridge.jQuery2; [External] public class ace { internal static AceEditor edit(string v) { throw new NotImplementedException(); } } [External] public class AceEditor : jQuery { public AceSession session; internal AceSession getSession() { return session; } internal string getValue() { throw new NotImplementedException(); } internal void setValue(string responseText) { throw new NotImplementedException(); } internal void moveCursorTo(int x, int y) { throw new NotImplementedException(); } internal void setTheme(string v) { throw new NotImplementedException(); } internal void setShowInvisibles(bool v) { throw new NotImplementedException(); } internal void gotoLine(int v1, int v2) { throw new NotImplementedException(); } internal void setReadOnly(bool v) { throw new NotImplementedException(); } } [External] public class AceSession { internal void setMode(string dynamic) { throw new NotImplementedException(); } internal void setTabSize(int v) { throw new NotImplementedException(); } internal void setUseSoftTabs(bool v) { throw new NotImplementedException(); } internal AceDocument getDocument() { throw new NotImplementedException(); } } [External] public class AceDocument { internal void setValue(string v) { throw new NotImplementedException(); } }