core/MetacelloValidationWarning.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 18 Sep 2012 18:24:44 +0000
changeset 16 25ac697dc747
parent 11 d354ac2af7ec
permissions -rw-r--r--
- Updated from branch master

"{ Package: 'stx:goodies/metacello/core' }"

MetacelloValidationIssue subclass:#MetacelloValidationWarning
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Metacello-Core-Validation'
!


!MetacelloValidationWarning methodsFor:'accessing'!

label

	^'Warning'
! !

!MetacelloValidationWarning methodsFor:'testing'!

isWarning

	^true
! !

!MetacelloValidationWarning class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !