All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.forge.roaster.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.roaster;

/**
 * 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 {@code this}. The caller is responsible for the correct casting.
    * 

* 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. *

* @return the implementation-specific object */ Object getInternal(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy