560 """ |
560 """ |
561 Public method used to get the registered state of a file in the vcs. |
561 Public method used to get the registered state of a file in the vcs. |
562 |
562 |
563 @param name filename to check |
563 @param name filename to check |
564 @type str |
564 @type str |
565 @return a combination of canBeCommited and canBeAdded or |
565 @return registered state (one of canBeCommited and canBeAdded) |
566 0 in order to signal an error |
|
567 @rtype int |
566 @rtype int |
568 @exception NotImplementedError to indicate that this method must be |
567 @exception NotImplementedError to indicate that this method must be |
569 implemented by a subclass |
568 implemented by a subclass |
570 """ |
569 """ |
571 raise NotImplementedError("Not implemented") |
570 raise NotImplementedError("Not implemented") |