org.jboss.forge.parser.Internal Maven / Gradle / Ivy
/*
* Copyright 2012 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.jboss.forge.parser;
/**
* Represents an object that stores implementation-specific data. This data must be accessible to other objects sharing
* the implementation, but should not be referenced by end-users.
*
* @author Lincoln Baxter, III
*
*/
public interface Internal
{
/**
* Returns the implementation-specific Object representing this
. Do not call this method unless
* you are willing to risk breaking backwards compatibility if future versions do not use the same internal object
* implementations.
*/
Object getInternal();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy