/******************************************************************************* * Copyright (c) 2007 Exadel, Inc. and Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is made available under the terms of the * Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Exadel, Inc. and Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.jsf.verification.vrules.toview; import org.jboss.tools.jsf.model.*; import org.jboss.tools.jsf.verification.vrules.JSFDefaultCheck; import org.jboss.tools.common.verification.vrules.*; public class JSFCheckFromViewIdExists extends JSFDefaultCheck implements JSFConstants { public VResult[] check(VObject object) { String attr = (String)object.getAttribute(ATT_FROM_VIEW_ID); if(attr == null || attr.length() == 0 || attr.indexOf('*') >= 0 || !attr.startsWith("/")) return null; //$NON-NLS-1$ if(getXModel(object).getByPath(attr) != null) return null; return fire(object, ATT_FROM_VIEW_ID, ATT_FROM_VIEW_ID, attr); } }