blob: de08ce1f7eda046b2aeaf46ad302b1b90741b01d [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.doc.internal;
import com.sun.tools.doclets.Taglet;
import com.sun.javadoc.*;
import java.util.Map;
/**
* Implements the <c>{@property link}</c> tag that simply resolves system properties.
*/
public class PropertyTag implements Taglet {
private static final String NAME = "property";
@Override
public String getName() {
return NAME;
}
@Override
public boolean inField() {
return true;
}
@Override
public boolean inConstructor() {
return true;
}
@Override
public boolean inMethod() {
return true;
}
@Override
public boolean inOverview() {
return true;
}
@Override
public boolean inPackage() {
return true;
}
@Override
public boolean inType() {
return true;
}
@Override
public boolean isInlineTag() {
return true;
}
@SuppressWarnings({ "javadoc", "rawtypes", "unchecked" })
public static void register(Map tagletMap) {
PropertyTag tag = new PropertyTag();
tagletMap.put(tag.getName(), tag);
}
@Override
public String toString(Tag tag) {
String s = System.getProperty(tag.text());
if (s == null)
System.err.println("Unknown system property '"+tag.text()+"'");
return s == null ? tag.text() : s;
}
@Override
public String toString(Tag[] tags) {
return null;
}
}