blob: ff1a3ee8b97492f8ecacd7d5775809dabcb5b086 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 1C-Soft LLC 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:
* Vladimir Piskarev (1C) - initial API and implementation
*******************************************************************************/
package org.eclipse.handly.model;
/**
* Represents an element in a source file or, more generally,
* an element inside a "resource" that may have associated source
* (an example of such "resource" might be a class file in a jar).
*
* @see ISourceElement
*/
public interface ISourceConstruct
extends ISourceElement
{
/*
* Implementors of this interface must also implement ISourceConstructImpl.
*/
}