@@ -27,7 +27,7 @@ public class ObjectiveClass <T: NSObject>: ObjectiveKitRuntimeModification {
2727 /// Get all instance variables implemented by the class.
2828 ///
2929 /// - Returns: An array of instance variables.
30- public func allIvars ( ) -> [ String ] {
30+ public func ivars ( ) -> [ String ] {
3131 var count : CUnsignedInt = 0
3232 var ivars = [ String] ( )
3333 let ivarList = class_copyIvarList ( internalClass, & count)
@@ -46,7 +46,7 @@ public class ObjectiveClass <T: NSObject>: ObjectiveKitRuntimeModification {
4646 /// Get all selectors implemented by the class.
4747 ///
4848 /// - Returns: An array of selectors.
49- public func allSelectors ( ) -> [ Selector ] {
49+ public func selectors ( ) -> [ Selector ] {
5050 var count : CUnsignedInt = 0
5151 var selectors = [ Selector] ( )
5252 let methodList = class_copyMethodList ( internalClass, & count)
@@ -63,7 +63,7 @@ public class ObjectiveClass <T: NSObject>: ObjectiveKitRuntimeModification {
6363 /// Get all protocols implemented by the class.
6464 ///
6565 /// - Returns: An array of protocol names.
66- public func allProtocols ( ) -> [ String ] {
66+ public func protocols ( ) -> [ String ] {
6767 var count : CUnsignedInt = 0
6868 var protocols = [ String] ( )
6969 let protocolList = class_copyProtocolList ( internalClass, & count)
@@ -80,7 +80,7 @@ public class ObjectiveClass <T: NSObject>: ObjectiveKitRuntimeModification {
8080 /// Get all properties implemented by the class.
8181 ///
8282 /// - Returns: An array of property names.
83- public func allProperties ( ) -> [ String ] {
83+ public func properties ( ) -> [ String ] {
8484 var count : CUnsignedInt = 0
8585 var properties = [ String] ( )
8686 let propertyList = class_copyPropertyList ( internalClass, & count)
0 commit comments