visitor.visitFieldConstraintDescr( descr );
}
private void visitEntryPointDescr(EntryPointDescr descr) throws UnknownDescriptionException {
// Check if already exists
EntryPoint entryPoint = data.getEntryPointByEntryId( descr.getEntryId() );
if ( entryPoint == null ) {
entryPoint = new EntryPoint();
entryPoint.setEntryPointName( descr.getEntryId() );
data.add( entryPoint );
}
pattern.setSourcePath( entryPoint.getPath() );
pattern.setSourceType( entryPoint.getVerifierComponentType() );
}