Standard Libraries

import default
import semmle.code.java.frameworks.spring.SpringXMLElement

/** Represents an <import> element in a Spring XML file*/
class SpringImport extends SpringXMLElement {
  SpringImport() {
    this.getName() = "import"
  }

  /** returns the value of the resourse attribute*/
  string getResourceString() {
    result = this.getAttributeValue("resource")
	}
}