Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ private int checkCriteria(Map<String, Object> properties) throws IOException {
/* (Intentionally not included in javadoc)
* @see IContentDescriber#describe(InputStream, IContentDescription)
*/
@Deprecated
@Override
public int describe(InputStream contents, IContentDescription description) throws IOException {
return describe(contents, description, new HashMap<>());
Expand All @@ -104,6 +105,7 @@ public int describe(InputStream contents, IContentDescription description) throw
/**
* @noreference This method is not intended to be referenced by clients.
*/
@Deprecated
public int describe(InputStream contents, IContentDescription description, Map<String, Object> properties) throws IOException {
// call the basic XML describer to do basic recognition
if (super.describe2(contents, description, properties) == INVALID) {
Expand All @@ -118,6 +120,7 @@ public int describe(InputStream contents, IContentDescription description, Map<S
/* (Intentionally not included in javadoc)
* @see IContentDescriber#describe(Reader, IContentDescription)
*/
@Deprecated
@Override
public int describe(Reader contents, IContentDescription description) throws IOException {
return describe(contents, description, new HashMap<>());
Expand All @@ -126,6 +129,7 @@ public int describe(Reader contents, IContentDescription description) throws IOE
/**
* @noreference This method is not intended to be referenced by clients.
*/
@Deprecated
public int describe(Reader contents, IContentDescription description, Map<String, Object> properties) throws IOException {
// call the basic XML describer to do basic recognition
if (super.describe2(contents, description, properties) == INVALID) {
Expand All @@ -140,6 +144,7 @@ public int describe(Reader contents, IContentDescription description, Map<String
/* (Intentionally not included in javadoc)
* @see IExecutableExtension#setInitializationData
*/
@Deprecated
@Override
public void setInitializationData(final IConfigurationElement config, final String propertyName, final Object data) throws CoreException {
if (data instanceof String) {
Expand Down
Loading