Standard Libraries

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

/** Represents the <description> element in Spring XML files. Its contents can be
  * accessed by using the getContentString() method declared in SpringXMLElement*/
class SpringDescription extends SpringXMLElement {
  SpringDescription() {
    this.getName() = "description"
	}
}