You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
477 B
38 lines
477 B
/*
|
|
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang.invoke;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* Internal marker for some methods in the JSR 292 implementation.
|
|
*/
|
|
/*non-public*/
|
|
@Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@interface DontInline {
|
|
}
|