/** * Copyright (c) 2005-2011 by Appcelerator, Inc. All Rights Reserved. * Licensed under the terms of the Eclipse Public License (EPL). * Please see the license.txt included with this distribution for details. * Any modifications to this file must keep this entire header intact. */ /* * Created on Apr 9, 2006 */ package com.python.pydev.analysis.additionalinfo; public final class NameInfo extends AbstractInfo { /** * Changed for 2.1 */ private static final long serialVersionUID = 3L; public NameInfo(String name, String moduleDeclared, String path) { super(name, moduleDeclared, path); } public NameInfo(String name, String moduleDeclared, String path, boolean doNotInternOnThisContstruct) { super(name, moduleDeclared, path, doNotInternOnThisContstruct); } public int getType() { return NAME_WITH_IMPORT_TYPE; } }