git/GitRemote.st
changeset 23 5cbdd3cb7ce4
child 28 f6f0a4bbaaee
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/git/GitRemote.st	Sun Sep 30 22:13:12 2012 +0000
@@ -0,0 +1,80 @@
+"{ Package: 'stx:libscm/git' }"
+
+GitRepositoryObject subclass:#GitRemote
+	instanceVariableNames:'name'
+	classVariableNames:''
+	poolDictionaries:'GitObjectType'
+	category:'SCM-Git-Model'
+!
+
+!GitRemote class methodsFor:'documentation'!
+
+documentation
+"
+    A GitRemote represents a remote repository.
+
+    [author:]
+        Jan Vrany <jan.vrany@fit.cvut.cz>
+
+    [instance variables:]
+
+    [class variables:]
+
+    [see also:]
+
+"
+! !
+
+!GitRemote methodsFor:'accessing'!
+
+name
+    ^ name
+! !
+
+!GitRemote methodsFor:'initialization'!
+
+setName: aString
+    name := aString
+
+    "Created: / 30-09-2012 / 20:37:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!GitRemote methodsFor:'initialization & release'!
+
+free
+    handle notNil ifTrue:[
+        GitPrimitives prim_git_remote_free: handle. 
+        handle := nil.
+    ].
+
+    "Created: / 30-09-2012 / 23:29:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!GitRemote methodsFor:'printing & storing'!
+
+printOn:aStream
+    "append a printed representation if the receiver to the argument, aStream"
+
+    super printOn:aStream.
+    aStream nextPut:$(.
+    name printOn:aStream.
+    aStream nextPut:$).
+
+    "Modified: / 30-09-2012 / 20:38:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!GitRemote methodsFor:'private-accessing'!
+
+getHandleClass
+    "Returns a class of my handle."
+
+    ^GitRemoteHandle
+
+    "Created: / 30-09-2012 / 20:33:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+! !
+
+!GitRemote class methodsFor:'documentation'!
+
+version_SVN
+    ^ '$Id::                                                                                                                        $'
+! !