blob: 20e4188d76a699f3de105e7246be5e269cd60b13 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2022 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.ote.core.framework.saxparse.elements;
import org.eclipse.osee.ote.core.framework.saxparse.ElementHandlers;
import org.xml.sax.Attributes;
/**
* @author Michael P. Masterson
*/
public class IsInteractive extends ElementHandlers {
public IsInteractive() {
super("isInteractive");
}
@Override
public Object createStartElementFoundObject(String uri, String localName, String name, Attributes attributes) {
return null;
}
}