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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * Copyright 2003-2004 The 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. * @since Ant 1.6
  26. */
  27. public class AntlibDefinition extends Task {
  28. private String uri = "";
  29. private ClassLoader antlibClassLoader;
  30. /**
  31. * The URI for this definition.
  32. * If the URI is "antlib:org.apache.tools.ant",
  33. * (this is the default uri)
  34. * the uri will be set to "".
  35. * URIs that start with "ant:" are reserved
  36. * and are not allowed in this context.
  37. * @param uri the namespace URI
  38. * @throws BuildException if a reserved URI is used
  39. */
  40. public void setURI(String uri) throws BuildException {
  41. if (uri.equals(ProjectHelper.ANT_CORE_URI)) {
  42. uri = "";
  43. }
  44. if (uri.startsWith("ant:")) {
  45. throw new BuildException("Attempt to use a reserved URI " + uri);
  46. }
  47. this.uri = uri;
  48. }
  49. /**
  50. * The URI for this definition.
  51. * @return The URI for this defintion.
  52. */
  53. public String getURI() {
  54. return uri;
  55. }
  56. /**
  57. * Set the class loader of the loading object
  58. *
  59. * @param classLoader a <code>ClassLoader</code> value
  60. */
  61. public void setAntlibClassLoader(ClassLoader classLoader) {
  62. this.antlibClassLoader = classLoader;
  63. }
  64. /**
  65. * The current antlib classloader
  66. * @return the antlib classloader for the definition, this
  67. * is null if the definition is not used in an antlib.
  68. */
  69. public ClassLoader getAntlibClassLoader() {
  70. return antlibClassLoader;
  71. }
  72. }