comparison graal/com.oracle.truffle.api/src/com/oracle/truffle/api/source/SourceTag.java @ 20908:f166d264af9f

Truflfe/Instrumentaion: migrate client-oriented notes on Probes to a newly written documentation page at https://wiki.openjdk.java.net/display/Graal/Finding+Probes. Replace Probe's Javadoc with implementation notes oriented to implementors.
author Michael Van De Vanter <michael.van.de.vanter@oracle.com>
date Mon, 13 Apr 2015 15:00:57 -0700
parents c8b83aa6cc82
children
comparison
equal deleted inserted replaced
20907:06b0a2fb20a1 20908:f166d264af9f
25 package com.oracle.truffle.api.source; 25 package com.oracle.truffle.api.source;
26 26
27 /** 27 /**
28 * Categorical information (best implemented as enums} about particular sources of Guest Language 28 * Categorical information (best implemented as enums} about particular sources of Guest Language
29 * code that can be useful to configure behavior of both the language runtime and external tools. 29 * code that can be useful to configure behavior of both the language runtime and external tools.
30 * These might include {@linkplain Source.Tags standard tags} noting, for example, 30 * These might include {@linkplain Source.Tags standard tags} noting, for example, whether the
31 * whether the source was read from a file and whether it should be considered library code. 31 * source was read from a file and whether it should be considered library code.
32 * <p> 32 * <p>
33 * The need for additional tags is likely to arise, in some cases because of issue specific to a 33 * The need for additional tags is likely to arise, in some cases because of issue specific to a
34 * Guest Language, but also for help configuring the behavior of particular tools. 34 * Guest Language, but also for help configuring the behavior of particular tools.
35 * 35 *
36 * @see Source 36 * @see Source