Here you can find the source of isUIParameter(Element ele)
Parameter | Description |
---|---|
ele | a parameter |
public static boolean isUIParameter(Element ele)
//package com.java2s; /******************************************************************************* * Copyright (c) 2006 Sybase, Inc. and others. * * All rights reserved. This program and the accompanying materials * are 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:/*ww w .j av a2 s. c om*/ * Sybase, Inc. - initial API and implementation *******************************************************************************/ import org.w3c.dom.Element; public class Main { /** * @param ele * @return true if the local name of ele is "param" */ public static boolean isUIParameter(Element ele) { return "param".equals(ele.getLocalName()); //$NON-NLS-1$ } }