You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

AntlibDefinition.java 2.4 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright 2003-2004 Apache Software Foundation
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. package org.apache.tools.ant.taskdefs;
  18. import org.apache.tools.ant.BuildException;
  19. import org.apache.tools.ant.ProjectHelper;
  20. import org.apache.tools.ant.Task;
  21. /**
  22. * Base class for tasks that that can be used in antlibs.
  23. * For handling uri and class loading.
  24. *
  25. * @author Peter Reilly
  26. *
  27. * @since Ant 1.6
  28. */
  29. public class AntlibDefinition extends Task {
  30. private String uri = "";
  31. private ClassLoader antlibClassLoader;
  32. /**
  33. * The URI for this definition.
  34. * If the URI is "antlib:org.apache.tools.ant",
  35. * (this is the default uri)
  36. * the uri will be set to "".
  37. * URIs that start with "ant:" are reserved
  38. * and are not allowed in this context.
  39. * @param uri the namespace URI
  40. * @throws BuildException if a reserved URI is used
  41. */
  42. public void setURI(String uri) throws BuildException {
  43. if (uri.equals(ProjectHelper.ANT_CORE_URI)) {
  44. uri = "";
  45. }
  46. if (uri.startsWith("ant:")) {
  47. throw new BuildException("Attempt to use a reserved URI " + uri);
  48. }
  49. this.uri = uri;
  50. }
  51. /**
  52. * The URI for this definition.
  53. * @return The URI for this defintion.
  54. */
  55. public String getURI() {
  56. return uri;
  57. }
  58. /**
  59. * Set the class loader of the loading object
  60. *
  61. * @param classLoader a <code>ClassLoader</code> value
  62. */
  63. public void setAntlibClassLoader(ClassLoader classLoader) {
  64. this.antlibClassLoader = classLoader;
  65. }
  66. /**
  67. * The current antlib classloader
  68. * @return the antlib classloader for the definition, this
  69. * is null if the definition is not used in an antlib.
  70. */
  71. public ClassLoader getAntlibClassLoader() {
  72. return antlibClassLoader;
  73. }
  74. }