コード例 #1
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static void Patch(Class clazz, Mixin mixin) { throw new NotImplementedException(); }
コード例 #2
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static bool SupportsEvent(Class clazz, string name) { throw new NotImplementedException(); }
コード例 #3
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static bool HasProperty(Class clazz, string name) { throw new NotImplementedException(); }
コード例 #4
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static bool IsSubClassOf(Class clazz, Class superClass) { throw new NotImplementedException(); }
コード例 #5
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static bool HasOwnInterface(Class clazz, Interface iface) { throw new NotImplementedException(); }
コード例 #6
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static bool HasOwnMixin(Class clazz, Mixin mixin) { throw new NotImplementedException(); }
コード例 #7
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static string GetProperties(Class clazz) { throw new NotImplementedException(); }
コード例 #8
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static object GetPropertyDefinition(Class clazz, string name) { throw new NotImplementedException(); }
コード例 #9
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static Interface GetInterfaces(Class clazz) { throw new NotImplementedException(); }
コード例 #10
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static Mixin GetMixins(Class clazz) { throw new NotImplementedException(); }
コード例 #11
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static string GetEventType(Class clazz, string name) { throw new NotImplementedException(); }
コード例 #12
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static Class GetByMixin(Class clazz, Mixin mixin) { throw new NotImplementedException(); }
コード例 #13
0
ファイル: Class.cs プロジェクト: fjgandrade/sharpkit
		public static Class GetByInterface(Class clazz, Interface iface) { throw new NotImplementedException(); }
コード例 #14
0
ファイル: Mixin.cs プロジェクト: hultqvist/SharpKit-SDK
		public static bool IsCompatible(Mixin mixin, Class clazz) { throw new NotImplementedException(); }
コード例 #15
0
ファイル: Interface.cs プロジェクト: fjgandrade/sharpkit
		public static void Assert(Class clazz, Interface iface, bool wrap = false) { throw new NotImplementedException(); }