Commit 172fc5b6 authored by Jorge Vega's avatar Jorge Vega

todo

parent 7f7a13a4
This source diff could not be displayed because it is too large. You can view the blob instead.
angular.module('crudApp').factory('Employee',Employee);
Employee.$inject=['$resource'];
function Employee($resource){
var resourceUrl='npi/employee/:id';
return $resource(resourceUrl,{},{
'update':{
method:'PUT'
}
});
}
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
package espe.edu.ec.angularjsrestapidemo.repository;
public interface EmployeeRepository {
}
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.compliance=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.5
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
package espe.edu.ec.angularjsrestapidemo.service;
import javax.persistence.EntityExistsException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import antlr.collections.List;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.repository.EmployeeRepository;
@Service
public class EmployeeService {
private EmployeeRepository employeeRepository;
@Autowired
public EmployeeService(EmployeeRepository employeeRepository) {
this.employeeRepository=employeeRepository;
}
public Employee save(Employee employee) {
if(employee.getId()!=null&&employeeRepository.exists(employee.getId())) {
throw new EntityExistsException("Ya se encuentra un registro con ese id en la base de datos");
}
return employeeRepository.save(employee);
}
public Employee update(Employee employee) {
if(employee.getId()!=null&&employeeRepository.exists(employee.getId())) {
throw new EntityExistsException("Ya se encuentra un registro con ese id en la base de datos");
}
return employeeRepository.save(employee);
}
}
package espe.edu.ec.angularjsrestapidemo.model;
public class Employee {
}
package espe.edu.ec.angularjsrestapidemo.controller;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.service.EmployeeService;
@RestController
@RequestMapping("/api")
public class EmployeeResource {
private EmployeeService employeeService;
public EmployeeResource(EmployeeService employeeService) {
this.employeeService=employeeService;
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public List<Employee> getAllEmployees(){
return employeeService.findAll();
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Employee> createEmployee(@RequestBody Employee employee) throws URISyntaxException {
try {
Employee result=employeeService.save(employee);
return ResponseEntity.created(new URI("/api/employee/"+result.getId())).body(result);
} catch (Exception e) {
return new ResponseEntity<Employee>(HttpStatus.CONFLICT);
}
}
@RequestMapping(value="employee",method=RequestMethod.PUT,produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Employee> updateEmployee(@RequestBody Employee employee) throws URISyntaxException {
if (employee.getId()==null) {
return new ResponseEntity<Employee>(HttpStatus.NOT_FOUND);
}
try {
Employee result=employeeService.update(employee);
return ResponseEntity.created(new URI("/api/employee/"+result.getId())).body(result);
} catch (Exception e) {
return new ResponseEntity<Employee>(HttpStatus.NOT_FOUND);
}
}
}
package espe.edu.ec.angularjsrestapidemo.service;
import javax.persistence.EntityExistsException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import antlr.collections.List;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.repository.EmployeeRepository;
@Service
public class EmployeeService {
private EmployeeRepository employeeRepository;
@Autowired
public EmployeeService(EmployeeRepository employeeRepository) {
this.employeeRepository=employeeRepository;
}
public Employee save(Employee employee) {
if(employee.getId()!=null&&employeeRepository.exists(employee.getId())) {
throw new EntityExistsException("Ya se encuentra un registro con ese id en la base de datos");
}
return employeeRepository.save(employee);
}
public Employee update(Employee employee) {
if(employee.getId()!=null&&employeeRepository.exists(employee.getId())) {
throw new EntityExistsException("Ya se encuentra un registro con ese id en la base de datos");
}
return employeeRepository.save(employee);
}
public List<Employee> findAll(){
return employeeRepository.findAll();
}
public Employee findOne(Integer id) {
return employeeRepository.findOne(id);
}
public void delete(Integer id ) {
employeeRepository.delete(id);
}
}
package espe.edu.ec.angularjsrestapidemo.model;
import javax.persistence.Entity;
import javax.persistence.Table;
import org.springframework.data.jpa.domain.support.AuditingEntityListener;
@Entity
@Table(name="Employee")
@EntityListeners(AuditingEntityListener.class)
public class Employee {
}
package espe.edu.ec.angularjsrestapidemo.service;
public class EmployeeService {
}
var app-angular.module("crudApp",['ngResource']);
\ No newline at end of file
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>espe.edu.ec</groupId>
<artifactId>AngularJsRestApiDemo</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>AngularJsRestApiDemo Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>AngularJsRestApiDemo</finalName>
</build>
</project>
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.letsstartcoding</groupId>
<artifactId>angularjsrestapidemo</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>angularjsrestapidemo Maven Webapp</name>
<url>http://maven.apache.org</url>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.4.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>angularjsrestapidemo</finalName>
</build>
</project>
var app=angular.module("crudApp",['ngResource']);
\ No newline at end of file
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.5
package espe.edu.ec.angularjsrestapidemo.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import espe.edu.ec.angularjsrestapidemo.service.EmployeeService;
@RestController
@RequestMapping("/api")
public class EmployeeResource {
private EmployeeService employeeService;
public EmployeeService(EmployeeService employeeService) {
this.employeeService=employeeService;
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public List<Employee> getAllEmployees(){
return employeeService.findAll();
}
}
package espe.edu.ec.angularjsrestapidemo.controller;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.service.EmployeeService;
@RestController
@RequestMapping("/api")
public class EmployeeResource {
private EmployeeService employeeService;
public EmployeeResource(EmployeeService employeeService) {
this.employeeService=employeeService;
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public List<Employee> getAllEmployees(){
return employeeService.findAll();
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Employee> createEmployee(@RequestBody Employee employee) throws URISyntaxException {
try {
Employee result=employeeService.save(employee);
return ResponseEntity.created(new URI("/api/employee/"+result.getId())).body(result);
} catch (Exception e) {
return new ResponseEntity<Employee>(HttpStatus.CONFLICT);
}
}
}
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
package espe.edu.ec.angularjsrestapidemo.controller;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.service.EmployeeService;
@RestController
@RequestMapping("/api")
public class EmployeeResource {
private EmployeeService employeeService;
public EmployeeResource(EmployeeService employeeService) {
this.employeeService=employeeService;
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public List<Employee> getAllEmployees(){
return employeeService.findAll();
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Employee> createEmployee(@RequestBody Employee employee) throws URISyntaxException {
try {
Employee result=employeeService.save(employee);
return ResponseEntity.created(new URI("/api/employee/"+result.getId())).body(result);
} catch (Exception e) {
return new ResponseEntity<Employee>(HttpStatus.CONFLICT);
}
}
@RequestMapping(value="employee",method=RequestMethod.PUT,produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Employee> updateEmployee(@RequestBody Employee employee) throws URISyntaxException {
if (employee.getId()==null) {
return new ResponseEntity<Employee>(HttpStatus.NOT_FOUND);
}
try {
Employee result=employeeService.update(employee);
return ResponseEntity.created(new URI("/api/employee/"+result.getId())).body(result);
} catch (Exception e) {
return new ResponseEntity<Employee>(HttpStatus.NOT_FOUND);
}
}
@RequestMapping(value="/employee/{id}",method=RequestMethod.DELETE,produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Void> deleteEmployee(@PathVariable Integer id){
employeeService.delete(id);
return ResponseEntity.ok().build();
}
}
package espe.edu.ec.angularjsrestapidemo.controller;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.service.EmployeeService;
@RestController
@RequestMapping("/api")
public class EmployeeResource {
private EmployeeService employeeService;
public EmployeeResource(EmployeeService employeeService) {
this.employeeService=employeeService;
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public List<Employee> getAllEmployees(){
return employeeService.findAll();
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Employee> createEmployee(@RequestBody Employee employee) throws URISyntaxException {
try {
Employee result=employeeService.save(employee);
return ResponseEntity.created(new URI("/api/employee/"+result.getId())).body(result);
} catch (Exception e) {
// TODO: handle exception
}
}
}
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
package espe.edu.ec.angularjsrestapidemo.repository;
import org.springframework.data.jpa.repository.JpaRepository;
public interface EmployeeRepository extends JpaRepository<Employee, Integer> {
}
var app-angular.module("crudApp",['ngResource']);
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
</body>
</html>
\ No newline at end of file
package espe.edu.ec.angularjsrestapidemo.controller;
import java.net.URISyntaxException;
import java.util.List;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.service.EmployeeService;
@RestController
@RequestMapping("/api")
public class EmployeeResource {
private EmployeeService employeeService;
public EmployeeResource(EmployeeService employeeService) {
this.employeeService=employeeService;
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public List<Employee> getAllEmployees(){
return employeeService.findAll();
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Employee> createEmployee(@RequestBody Employee employee) throws URISyntaxException {
try {
Employee result=employeeService.save(employee);
return ResponseEntity.created(new URI("/api/employee/"+result.getId())).body(result);
} catch (Exception e) {
// TODO: handle exception
}
}
}
package espe.edu.ec.angularjsrestapidemo.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
public interface EmployeeRepository extends JpaRepository<Employee, Integer> {
}
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<property name="context-root" value="AngularJsRestApiDemo"/>
</wb-module>
</project-modules>
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
package espe.edu.ec.angularjsrestapidemo.service;
import javax.persistence.EntityExistsException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.repository.EmployeeRepository;
@Service
public class EmployeeService {
private EmployeeRepository employeeRepository;
@Autowired
public EmployeeService(EmployeeRepository employeeRepository) {
this.employeeRepository=employeeRepository;
}
public Employee save(Employee employee) {
if(employee.getId()!=null&&employeeRepository.exists(employee.getId())) {
throw new EntityExistsException("Ya se encuentra un registro con ese id en la base de datos");
}
return employeeRepository.save(employee);
}
public Employee update(Employee employee) {
if(employee.getId()!=null&&employeeRepository.exists(employee.getId())) {
throw new EntityExistsException("Ya se encuentra un registro con ese id en la base de datos");
}
return employeeRepository.save(employee);
}
public java.util.List<Employee> findAll(){
return employeeRepository.findAll();
}
public Employee findOne(Integer id) {
return employeeRepository.findOne(id);
}
public void delete(Integer id ) {
employeeRepository.delete(id);
}
}
var app;-angular.module("crudApp",['ngResource']);
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId">
<wb-module deploy-name="AngularJsRestApiDemo"/>
</project-modules>
angular.module("crudApp").controller("GeneralController",GeneralController);
GeneralController.inject=['$scope','Employee'];
function GeneralController($scope,Employee) {
$scope.employees=Employee.query();
$scope.employee={};
$scope.buttonText="Submit";
$scope.saveEmployee=function(){
if ($scope.employee.id!==undefined) {
Employee.update($scope,employee,function(){
$scope.employees=Employee.query();
$scope.employee={};
$scope.buttonText="Submit";
});
}else {
Employee.save($scope,employee,function(){
$scope.employees=Employee.query();
$scope.employee={};
});
}
}
$scope.updateEmployeeInit=function(employee){
$scope.buttonText="Update";
$scope.employee=employee;
}
$scope.deleteEmployee=function(employee){
employee.$delete({id:employee.id},function(){
$scope.employees=Employee.query();
});
}
}
\ No newline at end of file
package espe.edu.ec.angularjsrestapidemo.service;
import javax.persistence.EntityExistsException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import antlr.collections.List;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.repository.EmployeeRepository;
@Service
public class EmployeeService {
private EmployeeRepository employeeRepository;
@Autowired
public EmployeeService(EmployeeRepository employeeRepository) {
this.employeeRepository=employeeRepository;
}
public Employee save(Employee employee) {
if(employee.getId()!=null&&employeeRepository.exists(employee.getId())) {
throw new EntityExistsException("Ya se encuentra un registro con ese id en la base de datos");
}
return employeeRepository.save(employee);
}
public Employee update(Employee employee) {
if(employee.getId()!=null&&employeeRepository.exists(employee.getId())) {
throw new EntityExistsException("Ya se encuentra un registro con ese id en la base de datos");
}
return employeeRepository.save(employee);
}
public java.util.List<Employee> findAll(){
return employeeRepository.findAll();
}
public Employee findOne(Integer id) {
return employeeRepository.findOne(id);
}
public void delete(Integer id ) {
employeeRepository.delete(id);
}
}
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<wb-resource deploy-path="/" source-path="/src/main/webapp"/>
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
package espe.edu.ec.angularjsrestapidemo.model;
import javax.persistence.Entity;
import javax.persistence.EntityListeners;
import javax.persistence.Table;
import org.springframework.data.jpa.domain.support.AuditingEntityListener;
@Entity
@Table(name="Employee")
@EntityListeners(AuditingEntityListener.class)
public class Employee {
}
package espe.edu.ec.angularjsrestapidemo;
public class CrudApp {
}
package espe.edu.ec.angularjsrestapidemo.controller;
public class EmployeeResource {
}
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
spring.datasource.url = jdbc:mysql://localhost:3306/world?useSSL=false
spring.datasource.username = root
spring.datasource.password = varun123
## Hibernate Properties
# The SQL dialect makes Hibernate generate better SQL for the chosen database
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
# Hibernate ddl auto (create, create-drop, validate, update)
spring.jpa.hibernate.ddl-auto = update
package espe.edu.ec.angularjsrestapidemo.controller;
import java.util.List;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.service.EmployeeService;
@RestController
@RequestMapping("/api")
public class EmployeeResource {
private EmployeeService employeeService;
public EmployeeResource(EmployeeService employeeService) {
this.employeeService=employeeService;
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public List<Employee> getAllEmployees(){
return employeeService.findAll();
}
}
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.5
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
var app-angular.module("crudApp",['ngResource']);
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/test/java"/>
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
package espe.edu.ec.angularjsrestapidemo.controller;
import java.util.List;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
import espe.edu.ec.angularjsrestapidemo.model.Employee;
import espe.edu.ec.angularjsrestapidemo.service.EmployeeService;
@RestController
@RequestMapping("/api")
public class EmployeeResource {
private EmployeeService employeeService;
public EmployeeResource(EmployeeService employeeService) {
this.employeeService=employeeService;
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public List<Employee> getAllEmployees(){
return employeeService.findAll();
}
@RequestMapping(value="employee",method=RequestMethod.GET,produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<Employee> createEmployee(@RequestBody Employee employee) throws URISyntaxException {
try {
Employee result=employeeService.save(employee);
return ResponseEntity.created(new URI("/api/employee/"+result.getId())).body(result);
} catch (Exception e) {
// TODO: handle exception
}
}
}
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
<wb-module deploy-name="AngularJsRestApiDemo">
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
<property name="context-root" value="AngularJsRestApiDemo"/>
<property name="java-output-path" value="/AngularJsRestApiDemo/target/classes"/>
</wb-module>
</project-modules>
eclipse.preferences.version=1
org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<launchPerspectives/>\r\n
preferredTargets=default\:default|default,org.eclipse.wst.jsdt.chromium.debug.ui.toggleTargetId\:default|
core_autoIgnoreDerivedResources=false
eclipse.preferences.version=1
CatalogDescriptor=http\://marketplace.eclipse.org
eclipse.preferences.version=1
eclipse.preferences.version=1
org.eclipse.jdt.core.builder.resourceCopyExclusionFilter=
org.eclipse.jdt.core.classpathVariable.JRE_LIB=C\:/Program Files/Java/jdk1.8.0_77/jre/lib/rt.jar
org.eclipse.jdt.core.classpathVariable.JRE_SRC=C\:/Program Files/Java/jdk1.8.0_77/src.zip
org.eclipse.jdt.core.classpathVariable.JRE_SRCROOT=
org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
eclipse.preferences.version=1
org.eclipse.jdt.junit.content_assist_favorite_static_members_migrated=true
eclipse.preferences.version=1
org.eclipse.jdt.launching.PREF_VM_XML=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<vmSettings defaultVM\="57,org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType13,1550781041276">\r\n<vmType id\="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType">\r\n<vm id\="1550758519369" name\="jre1.8.0_201" path\="C\:\\Program Files\\Java\\jre1.8.0_201"/>\r\n<vm id\="1550781041276" javadocURL\="https\://docs.oracle.com/javase/8/docs/api/" name\="jdk1.8.0_77" path\="C\:\\Program Files\\Java\\jdk1.8.0_77"/>\r\n</vmType>\r\n</vmSettings>\r\n
content_assist_favorite_static_members=org.assertj.core.api.Assertions.*;org.mockito.Matchers.*;org.mockito.Mockito.*;org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestBuilders.*;org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestPostProcessors.*;org.springframework.security.test.web.servlet.response.SecurityMockMvcResultMatchers.*;org.springframework.security.test.web.servlet.setup.SecurityMockMvcConfigurers.*;org.springframework.restdocs.mockmvc.MockMvcRestDocumentation.*;org.springframework.test.web.client.match.MockRestRequestMatchers.*;org.springframework.test.web.client.response.MockRestResponseCreators.*;org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;org.springframework.test.web.servlet.result.MockMvcResultHandlers.*;org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;org.hamcrest.CoreMatchers.*;org.junit.Assert.*
content_assist_number_of_computers=23
content_assist_proposals_background=255,255,255
content_assist_proposals_foreground=0,0,0
eclipse.preferences.version=1
org.eclipse.jdt.internal.ui.navigator.layout=2
org.eclipse.jdt.internal.ui.navigator.librariesnode=true
org.eclipse.jdt.ui.formatterprofiles.version=15
org.eclipse.jdt.ui.text.code_templates_migrated=true
org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
org.eclipse.jdt.ui.text.custom_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
org.eclipse.jdt.ui.text.templates_migrated=true
spelling_locale_initialized=true
useAnnotationsPrefPage=true
useQuickDiffPrefPage=true
eclipse.preferences.version=1
org.eclipse.jsch.core.hasChangedDefaultWin32SshHome=true
eclipse.preferences.version=1
org.eclipse.jst.jsp.core.internal.java.search.JSPIndexManager=JSP Index v3.10_20180412_01
eclipse.preferences.version=1
locationorg.eclipse.jst.server.tomcat.runtime.70=C\:/xampp/tomcat
eclipse.preferences.version=1
org.eclipse.m2e.discovery.pref.projects=
eclipse.preferences.version=1
org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true
eclipse.preferences.version=1
migrated.task.repositories.secure.store=true
org.eclipse.mylyn.tasks.ui.filters.nonmatching=true
org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true
activeuserprofiles=Img-NUCi5;Team
eclipse.preferences.version=1
eclipse.preferences.version=1
overviewRuler_migration=migrated_3.1
PROBLEMS_FILTERS_MIGRATE=true
eclipse.preferences.version=1
platformState=1550757023718
quickStart=false
tipsAndTricks=true
//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false
//org.eclipse.ui.commands/state/org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor/org.eclipse.ui.commands.radioState=xpath10
PLUGINS_NOT_ACTIVATED_ON_STARTUP=;org.eclipse.m2e.discovery;
eclipse.preferences.version=1
org.eclipse.ui.commands=<?xml version\="1.0" encoding\="UTF-8"?>\r\n<org.eclipse.ui.commands/>
eclipse.preferences.version=1
newFileTemplateName=New HTML File (5)
eclipse.preferences.version=1
org.eclipse.wst.jsdt.core.codeComplete.visibilityCheck=enabled
eclipse.preferences.version=1
fontPropagated=true
org.eclipse.jface.textfont=1|Consolas|10.0|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Consolas;
org.eclipse.wst.jsdt.internal.ui.navigator.layout=1
org.eclipse.wst.jsdt.ui.editor.tab.width=
org.eclipse.wst.jsdt.ui.formatterprofiles.version=11
org.eclipse.wst.jsdt.ui.javadoclocations.migrated=true
org.eclipse.wst.jsdt.ui.text.custom_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
org.eclipse.wst.jsdt.ui.text.templates_migrated=true
proposalOrderMigrated=true
tabWidthPropagated=true
useAnnotationsPrefPage=true
useQuickDiffPrefPage=true
eclipse.preferences.version=1
runtimes=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<runtimes>\r\n <runtime id\="Apache Tomcat v7.0" location\="C\:/xampp/tomcat" name\="Apache Tomcat v7.0" runtime-type-id\="org.eclipse.jst.server.tomcat.runtime.70" timestamp\="0"/>\r\n</runtimes>\r\n
cache-lastUpdatedDate=Thu Feb 21 2019 15\:36\:45 COT
eclipse.preferences.version=1
content_assist_number_of_computers=22
eclipse.preferences.version=1
useAnnotationsPrefPage=true
useQuickDiffPrefPage=true
eclipse.preferences.version=1
org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsiap.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/
org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsissbp.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/
eclipse.preferences.version=1
org.springframework.ide.eclipse.imports.importStaticsInstanceScope=true
eclipse.preferences.version=1
egit.pref.fixed.core_autoIgnoreDerivedResources=true
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
<stringAttribute key="M2_GOALS" value="clean install"/>
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
<booleanAttribute key="M2_OFFLINE" value="false"/>
<stringAttribute key="M2_PROFILES" value=""/>
<listAttribute key="M2_PROPERTIES"/>
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
<intAttribute key="M2_THREADS" value="1"/>
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
<stringAttribute key="M2_USER_SETTINGS" value=""/>
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:AngularJsRestApiDemo}"/>
</launchConfiguration>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/AngularJsRestApiDemo/src/main/java/espe/edu/ec/angularjsrestapidemo/CrudApp.java"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="1"/>
</listAttribute>
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_EXCLUDE_TEST_CODE" value="true"/>
<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.m2e.launchconfig.classpathProvider"/>
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="espe.edu.ec.angularjsrestapidemo.CrudApp"/>
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="AngularJsRestApiDemo"/>
<stringAttribute key="org.eclipse.jdt.launching.SOURCE_PATH_PROVIDER" value="org.eclipse.m2e.launchconfig.sourcepathProvider"/>
</launchConfiguration>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchHistory>
<launchGroup id="org.eclipse.debug.ui.launchGroup.debug">
<mruHistory>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;CrudApp&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;AngularJsRestApiDemo&quot;/&gt;&#13;&#10;"/>
</mruHistory>
<favorites/>
</launchGroup>
<launchGroup id="org.eclipse.debug.ui.launchGroup.profile">
<mruHistory/>
<favorites/>
</launchGroup>
<launchGroup id="org.eclipse.eclemma.ui.launchGroup.coverage">
<mruHistory>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;CrudApp&quot;/&gt;&#13;&#10;"/>
</mruHistory>
<favorites/>
</launchGroup>
<launchGroup id="org.eclipse.ui.externaltools.launchGroup">
<mruHistory/>
<favorites/>
</launchGroup>
<launchGroup id="org.eclipse.debug.ui.launchGroup.run">
<mruHistory>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;CrudApp&quot;/&gt;&#13;&#10;"/>
<launch memento="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;launchConfiguration local=&quot;true&quot; path=&quot;AngularJsRestApiDemo&quot;/&gt;&#13;&#10;"/>
</mruHistory>
<favorites/>
</launchGroup>
</launchHistory>
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<list key="EGit.KnownHosts">
<item value="git.eclipse.org"/>
<item value="github.com"/>
<item value="bitbucket.org"/>
</list>
</section>
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<section name="org.eclipse.epp.internal.mpc.ui.wizards.MarketplaceWizardDialog_dialogBounds.absolute">
<item value="721" key="DIALOG_WIDTH"/>
<item value="1|Segoe UI|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|Segoe UI" key="DIALOG_FONT_NAME"/>
<item value="860" key="DIALOG_HEIGHT"/>
<item value="537" key="DIALOG_X_ORIGIN"/>
<item value="0" key="DIALOG_Y_ORIGIN"/>
</section>
</section>
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
</section>
INDEX VERSION 1.131
C:\Angular_Rest_API_Demo\.metadata\.plugins\org.eclipse.jst.jsp.core\jspsearch\3828824798.index
\AngularJsRestApiDemo\src\main\resources
INDEX VERSION 1.131+C:\Angular_Rest_API_Demo\.metadata\.plugins\org.eclipse.jdt.core
3593971869.index
432180046.index
3037552836.index
3172367027.index
1057962747.index
2637941957.index
3878347102.index
1789390614.index
2931018559.index
3512030266.index
1279793078.index
977005183.index
1877180756.index
1905445772.index
950150540.index
3900817753.index
4190519653.index
1102588962.index
1311115582.index
408005687.index
2638591631.index
370857865.index
3056584743.index
2740090879.index
744480874.index
395150133.index
2274042111.index
1481171513.index
2745827098.index
347298296.index
2250437385.index
1194256060.index
3507381789.index
517795047.index
577831165.index
1203657525.index
2485551015.index
2166099913.index
399349649.index
2332919143.index
4161041133.index
998488819.index
2911405081.index
3432770675.index
3661397713.index
3034093686.index
241857209.index
610073668.index
4140533279.index
1644359838.index
4212209552.index
3444653957.index
1611016807.index
3038807508.index
2397062297.index
1638973151.index
1132063545.index
1281579729.index
3131541122.index
3087009785.index
2078372065.index
2952582443.index
4283177277.index
3134161150.index
1380600312.index
1193631889.index
1612208864.index
2571900476.index
1569359462.index
2422173456.index
3494351833.index
2111631976.index
4238809828.index
2522509654.index
1692394370.index
4048639135.index
2909224240.index
238672883.index
1299456545.index
3715107026.index
2207594954.index
3613151636.index
2116405602.index
1317336316.index
4238833514.index
945357871.index
1427746546.index
2963665857.index
386286520.index
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<dirs>
<entry loc="C:\Program Files\Java\jre1.8.0_201" stamp="1550526474242"/>
<entry loc="C:\Program Files\Java\jdk1.8.0_77" stamp="1550521290488"/>
</dirs>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<libraryInfos>
<libraryInfo home="C:\Program Files\Java\jre1.8.0_201" version="1.8.0_201">
<bootpath>
<entry path="C:\Program Files\Java\jre1.8.0_201\lib\resources.jar"/>
<entry path="C:\Program Files\Java\jre1.8.0_201\lib\rt.jar"/>
<entry path="C:\Program Files\Java\jre1.8.0_201\lib\sunrsasign.jar"/>
<entry path="C:\Program Files\Java\jre1.8.0_201\lib\jsse.jar"/>
<entry path="C:\Program Files\Java\jre1.8.0_201\lib\jce.jar"/>
<entry path="C:\Program Files\Java\jre1.8.0_201\lib\charsets.jar"/>
<entry path="C:\Program Files\Java\jre1.8.0_201\lib\jfr.jar"/>
<entry path="C:\Program Files\Java\jre1.8.0_201\classes"/>
</bootpath>
<extensionDirs>
<entry path="C:\Program Files\Java\jre1.8.0_201\lib\ext"/>
<entry path="C:\Windows\Sun\Java\lib\ext"/>
</extensionDirs>
<endorsedDirs>
<entry path="C:\Program Files\Java\jre1.8.0_201\lib\endorsed"/>
</endorsedDirs>
</libraryInfo>
<libraryInfo home="C:\Program Files\Java\jdk1.8.0_77" version="1.8.0_77">
<bootpath>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\lib\resources.jar"/>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\lib\rt.jar"/>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\lib\sunrsasign.jar"/>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\lib\jsse.jar"/>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\lib\jce.jar"/>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\lib\charsets.jar"/>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\lib\jfr.jar"/>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\classes"/>
</bootpath>
<extensionDirs>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\lib\ext"/>
<entry path="C:\Windows\Sun\Java\lib\ext"/>
</extensionDirs>
<endorsedDirs>
<entry path="C:\Program Files\Java\jdk1.8.0_77\jre\lib\endorsed"/>
</endorsedDirs>
</libraryInfo>
</libraryInfos>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<typeInfoHistroy/>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<qualifiedTypeNameHistroy/>
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<section name="quick_assist_proposal_size">
</section>
<section name="JavaElementSearchActions">
</section>
</section>
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<section name="RefactoringWizard.preview">
<item value="600" key="width"/>
<item value="400" key="height"/>
</section>
</section>
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<section name="MavenProjectWizardArtifactPage">
<list key="groupId">
</list>
<list key="name">
</list>
<list key="artifactId">
</list>
<list key="projectNameTemplate">
<item value="[artifactId]"/>
<item value="[artifactId]-TRUNK"/>
<item value="[artifactId]-[version]"/>
<item value="[groupId].[artifactId]"/>
<item value="[groupId].[artifactId]-[version]"/>
<item value="[name]"/>
</list>
<list key="version">
<item value="0.0.1-SNAPSHOT"/>
</list>
</section>
<section name="org.eclipse.m2e.core.pom.dependencies">
</section>
<section name="org.eclipse.m2e.core.pom.overview">
</section>
<section name="MavenProjectWizardArchetypePage">
<item value="All Catalogs" key="catalog"/>
<list key="projectNameTemplate">
<item value="[artifactId]"/>
<item value="[artifactId]-TRUNK"/>
<item value="[artifactId]-[version]"/>
<item value="[groupId].[artifactId]"/>
<item value="[groupId].[artifactId]-[version]"/>
<item value="[name]"/>
</list>
</section>
<section name="MavenProjectWizardLocationPage">
<list key="location">
</list>
<list key="projectNameTemplate">
<item value="[artifactId]"/>
<item value="[artifactId]-TRUNK"/>
<item value="[artifactId]-[version]"/>
<item value="[groupId].[artifactId]"/>
<item value="[groupId].[artifactId]-[version]"/>
<item value="[name]"/>
</list>
</section>
<section name="Maven2ProjectWizardArchifactPage">
<list key="package">
<item value="espe.edu.ec.AngularJsRestApiDemo"/>
</list>
<list key="groupId">
<item value="espe.edu.ec"/>
</list>
<list key="artifactId">
<item value="AngularJsRestApiDemo"/>
</list>
<list key="projectNameTemplate">
<item value="[artifactId]"/>
<item value="[artifactId]-TRUNK"/>
<item value="[artifactId]-[version]"/>
<item value="[groupId].[artifactId]"/>
<item value="[groupId].[artifactId]-[version]"/>
<item value="[name]"/>
</list>
<list key="version">
<item value="0.0.1-SNAPSHOT"/>
</list>
</section>
</section>
#Thu Feb 21 10:26:10 COT 2019
espe.edu.ec\:AngularJsRestApiDemo\:jar\:tests\:0.0.1-SNAPSHOT=C\:\\Angular_Rest_API_Demo\\AngularJsRestApiDemo\\target\\test-classes
espe.edu.ec\:AngularJsRestApiDemo\:war\:\:0.0.1-SNAPSHOT=C\:\\Angular_Rest_API_Demo\\AngularJsRestApiDemo\\target\\classes
espe.edu.ec\:AngularJsRestApiDemo\:pom\:\:0.0.1-SNAPSHOT=C\:\\Angular_Rest_API_Demo\\AngularJsRestApiDemo\\pom.xml
This source diff could not be displayed because it is too large. You can view the blob instead.
<configuration scan="true">
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
<pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder>
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>OFF</level> <!-- change to DEBUG to mimic '-consolelog' behaviour -->
</filter>
</appender>
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
<File>${org.eclipse.m2e.log.dir}/0.log</File>
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
<FileNamePattern>${org.eclipse.m2e.log.dir}/%i.log</FileNamePattern>
<MinIndex>1</MinIndex>
<MaxIndex>10</MaxIndex>
</rollingPolicy>
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
<MaxFileSize>100MB</MaxFileSize>
</triggeringPolicy>
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
<pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder>
</appender>
<appender name="EclipseLog" class="org.eclipse.m2e.logback.appender.EclipseLogAppender">
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
<level>WARN</level>
</filter>
</appender>
<appender name="MavenConsoleLog" class="org.eclipse.m2e.logback.appender.MavenConsoleAppender">
</appender>
<root level="INFO">
<appender-ref ref="FILE" />
<appender-ref ref="STDOUT" />
<appender-ref ref="EclipseLog" />
<appender-ref ref="MavenConsoleLog" />
</root>
<logger name="com.ning.http.client" level="INFO" />
</configuration>
<?xml version="1.0" encoding="UTF-8"?>
<setup:Workspace
xmi:version="2.0"
xmlns:xmi="http://www.omg.org/XMI"
xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
name="workspace"/>
#Cached timestamps
#Thu Feb 21 10:48:33 COT 2019
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
</section>
<?xml version="1.0" encoding="UTF-8"?>
<state reopen="true"/>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<section name="org.eclipse.ui.internal.QuickAccess">
<item value="-1" key="dialogHeight"/>
<item value="-1" key="dialogWidth"/>
<list key="textEntries">
</list>
<list key="orderedElements">
</list>
<list key="orderedProviders">
</list>
<list key="textArray">
</list>
</section>
<section name="NewWizardAction">
<item value="org.eclipse.ui.wizards.new.file" key="NewWizardSelectionPage.STORE_SELECTED_ID"/>
<list key="NewWizardSelectionPage.STORE_EXPANDED_CATEGORIES_ID">
<item value="org.eclipse.ui.Basic"/>
</list>
</section>
</section>
<?xml version="1.0" encoding="UTF-8"?>
<workingSetManager>
<workingSet editPageId="org.eclipse.jdt.internal.ui.DynamicSourcesWorkingSet" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1550758196037_0" label="Java Main Sources" name="Java Main Sources">
<item elementID="=AngularJsRestApiDemo/src\/main\/resources" factoryID="org.eclipse.jdt.ui.PersistableJavaElementFactory"/>
</workingSet>
<workingSet editPageId="org.eclipse.jdt.internal.ui.DynamicSourcesWorkingSet" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1550758196071_1" label="Java Test Sources" name="Java Test Sources"/>
<workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1550758207411_2" label="Window Working Set" name="Aggregate for window 1550758207410"/>
</workingSetManager>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?><cache/>
\ No newline at end of file
INDEX VERSION 1.4+C:\Angular_Rest_API_Demo\.metadata\.plugins\org.eclipse.wst.jsdt.core\indexes
2353673212.index
2613682628.index
2522509654.index
1290939822.index
1517379827.index
3828824798.index
This source diff could not be displayed because it is too large. You can view the blob instead.
/*******************************************************************************
* Copyright (c) 2008, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
function BarProp(){};
BarProp.prototype = new Array();
/**
* Object Window()
* @super Global
* @constructor
* @since Common Usage, no standard
*/
function Window(){};
Window.prototype = new EventTarget();
Window.prototype.self = new Window();
Window.prototype.window = new Window();
Window.prototype.frames = new Array();
/**
* Property closed
* @type Boolean
* @memberOf Window
*/
Window.prototype.closed = new Boolean();
/**
* Property defaultStatus
* @type String
* @memberOf Window
*/
Window.prototype.defaultStatus = "";
/**
* Property document
* @type Document
* @memberOf Window
*/
Window.prototype.document= new HTMLDocument();
/**
* Property history
* @type History
* @memberOf Window
*/
Window.prototype.history= new History();
/**
* Property location
* @type Location
* @memberOf Window
*/
Window.prototype.location=new Location();
/**
* Property name
* @type String
* @memberOf Window
*/
Window.prototype.name = "";
/**
* Property navigator
* @type Navigator
* @memberOf Window
*/
Window.prototype.navigator = new Navigator();
/**
* Property opener
* @type Window
* @memberOf Window
*/
Window.prototype.opener = new Window();
/**
* Property outerWidth
* @type Number
* @memberOf Window
*/
Window.prototype.outerWidth = 0;
/**
* Property outerHeight
* @type Number
* @memberOf Window
*/
Window.prototype.outerHeight = 0;
/**
* Property pageXOffset
* @type Number
* @memberOf Window
*/
Window.prototype.pageXOffset = 0;
/**
* Property pageYOffset
* @type Number
* @memberOf Window
*/
Window.prototype.pageYOffset = 0;
/**
* Property parent
* @type Window
* @memberOf Window
*/
Window.prototype.parent = new Window();
/**
* Property screen
* @type Screen
* @memberOf Window
*/
Window.prototype.screen = new Screen();
/**
* Property status
* @type String
* @memberOf Window
*/
Window.prototype.status = "";
/**
* Property top
* @type Window
* @memberOf Window
*/
Window.prototype.top = new Window();
/*
* These properties may need to be moved into a browswer specific library.
*/
/**
* Property innerWidth
* @type Number
* @memberOf Window
*/
Window.prototype.innerWidth = 0;
/**
* Property innerHeight
* @type Number
* @memberOf Window
*/
Window.prototype.innerHeight = 0;
/**
* Property screenX
* @type Number
* @memberOf Window
*/
Window.prototype.screenX = 0;
/**
* Property screenY
* @type Number
* @memberOf Window
*/
Window.prototype.screenY = 0;
/**
* Property screenLeft
* @type Number
* @memberOf Window
*/
Window.prototype.screenLeft = 0;
/**
* Property screenTop
* @type Number
* @memberOf Window
*/
Window.prototype.screenTop = 0;
//Window.prototype.event = new Event();
Window.prototype.length = 0;
Window.prototype.scrollbars= new BarProp();
Window.prototype.scrollX=0;
Window.prototype.scrollY=0;
Window.prototype.content= new Window();
Window.prototype.menubar= new BarProp();
Window.prototype.toolbar= new BarProp();
Window.prototype.locationbar= new BarProp();
Window.prototype.personalbar= new BarProp();
Window.prototype.statusbar= new BarProp();
Window.prototype.directories= new BarProp();
Window.prototype.scrollMaxX=0;
Window.prototype.scrollMaxY=0;
Window.prototype.fullScreen="";
Window.prototype.frameElement="";
/* End properites */
/**
* function alert()
* @param {String} message
* @memberOf Window
*/
Window.prototype.alert = function(message){};
/**
* function blur()
* @memberOf Window
*/
Window.prototype.blur = function(){};
/**
* function clearInterval(intervalID)
* @param intervalID
* @memberOf Window
*/
Window.prototype.clearInterval = function(intervalID){};
/**
* function clearTimeout(intervalID)
* @param intervalID
* @memberOf Window
*/
Window.prototype.clearTimeout = function(intervalID){};
/**
* function close()
* @memberOf Window
*/
Window.prototype.close = function(){};
/**
* function confirm()
* @param {String} arg
* @memberOf Window
* @returns {Boolean}
*/
Window.prototype.confirm = function(arg){return false;};
/**
* function focus()
* @memberOf Window
*/
Window.prototype.focus = function(){};
/**
* function getComputedStyle(element, pseudoElt )
* @param {Element} element
* @param {String} pseudoElt
* @memberOf Window
* @returns {Object}
*/
Window.prototype.getComputedStyle = function(element,pseudoElt ){return new Object();};
/**
* function moveTo(x, y)
* @param {Number} x
* @param {Number} y
* @memberOf Window
*/
Window.prototype.moveTo = function(x,y){};
/**
* function moveBy(deltaX, deltaY)
* @param {Number} deltaX
* @param {Number} deltaY
* @memberOf Window
*/
Window.prototype.moveBy = function(deltaX,deltaY){};
/**
* function open(optionalArg1, optionalArg2, optionalArg3, optionalArg4)
* @param {String} url
* @param {String} windowName
* @param {String} windowFeatures
* @param {Boolean} optionalArg4
* @memberOf Window
* @returns {Window}
*/
Window.prototype.open = function(url, windowName, windowFeatures, optionalArg4){return new Window();};
/**
* function print()
* @memberOf Window
*/
Window.prototype.print = function(){};
/**
* function prompt(text, value)
* @param {String} text
* @param {String} value
* @memberOf Window
* @returns {String}
*/
Window.prototype.prompt = function(text, value){return "";};
/**
* function resizeTo(newOuterWidth,newOuterHeight)
* @param {Number} newOuterWidth
* @param {Number} newOuterHeighr
* @memberOf Window
*/
Window.prototype.resizeTo=function(newOuterWidth,newOuterHeight){};
/**
* function resizeBy(deltaX, deltaY)
* @param {Number} deltaX
* @param {Number} deltaY
* @memberOf Window
*/
Window.prototype.resizeBy=function(deltaX,deltaY){};
/**
* function scrollTo(x,y)
* @param {Number} x
* @param {Number} y
* @memberOf Window
*/
Window.prototype.scrollTo=function(x,y){};
/**
* function scrollBy(pixelX,pixelY)
* @param {Number} pixelX
* @param {Number} pixelY
* @memberOf Window
*/
Window.prototype.scrollBy=function(pixelX,pixelY){};
/**
* function setInterval(arg1, arg2)
* @param {Function} callback
* @param {Number} delay
* @memberOf Window
* @returns {Number}
*/
Window.prototype.setInterval=function(callback, delay){return 0;};
/**
* function setTimeout(callback, delay)
* @param {Function} callback
* @param {Number} delay
* @memberOf Window
* @returns {Number}
*/
Window.prototype.setTimeout=function(callback, delay){ return 0;};
/**
* function atob(encodedData)
* @param {String} encodedData
* @memberOf Window
* @returns {String}
*/
Window.prototype.atob=function(encodedData){return "";};
/**
* function btoa(arg)
* @param {String} stringToEncode
* @memberOf Window
* @returns {String}
*/
Window.prototype.btoa=function(stringToEncode){return "";};
/**
* function setResizable(resizable)
* @param {Boolean} resizable
* @memberOf Window
*/
Window.prototype.setResizable=function(resizable){};
Window.prototype.captureEvents=function(eventType){};
Window.prototype.releaseEvents=function(eventType){};
Window.prototype.routeEvent=function(eventType){};
Window.prototype.enableExternalCapture=function(){};
Window.prototype.disableExternalCapture=function(){};
Window.prototype.find=function(){};
Window.prototype.back=function(){};
Window.prototype.forward=function(){};
Window.prototype.home=function(){};
Window.prototype.stop=function(){};
/**
* @param {Number} pixelX
* @param {Number} pixelY
*/
Window.prototype.scroll=function(pixelX,pixelY){};
/* End functions */
/**
* Object History()
* @super Object
* @constructor
* @since Common Usage, no standard
*/
function History(){};
History.prototype=new Object();
History.prototype.history = new History();
/**
* Property length
* @type Number
* @memberOf History
*/
History.prototype.length = 0;
/**
* function back()
* @memberOf History
*/
History.prototype.back = function(){};
/**
* function forward()
* @memberOf History
*/
History.prototype.forward = function(){};
/**
* function back()
* @param arg
* @memberOf History
*/
History.prototype.go = function(arg){};
/**
* Object Location()
* @super Object
* @constructor
* @since Common Usage, no standard
*/
function Location(){};
Location.prototype = new Object();
Location.prototype.location = new Location();
/**
* Property hash
* @type String
* @memberOf Location
*/
Location.prototype.hash = "";
/**
* Property host
* @type String
* @memberOf Location
*/
Location.prototype.host = "";
/**
* Property hostname
* @type String
* @memberOf Location
*/
Location.prototype.hostname = "";
/**
* Property href
* @type String
* @memberOf Location
*/
Location.prototype.href = "";
/**
* Property pathname
* @type String
* @memberOf Location
*/
Location.prototype.pathname = "";
/**
* Property port
* @type String
* @memberOf Location
*/
Location.prototype.port = "";
/**
* Property protocol
* @type String
* @memberOf Location
*/
Location.prototype.protocol = "";
/**
* Property search
* @type String
* @memberOf Location
*/
Location.prototype.search = "";
/**
* function assign(arg)
* @param {String} arg
* @memberOf Location
*/
Location.prototype.assign = function(arg){};
/**
* function reload(optionalArg)
* @param {Boolean} optionalArg
* @memberOf Location
*/
Location.prototype.reload = function(optionalArg){};
/**
* function replace(arg)
* @param {String} arg
* @memberOf Location
*/
Location.prototype.replace = function(arg){};
/**
* Object Navigator()
* @super Object
* @constructor
* @since Common Usage, no standard
*/
function Navigator(){};
Navigator.prototype = new Object();
Navigator.prototype.navigator = new Navigator();
/**
* Property appCodeName
* @type String
* @memberOf Navigator
*/
Navigator.prototype.appCodeName = "";
/**
* Property appName
* @type String
* @memberOf Navigator
*/
Navigator.prototype.appName = "";
/**
* Property appVersion
* @type String
* @memberOf Navigator
*/
Navigator.prototype.appVersion = "";
/**
* Property cookieEnabled
* @type Boolean
* @memberOf Navigator
*/
Navigator.prototype.cookieEnabled = new Boolean();
/**
* Property mimeTypes
* @type Array
* @memberOf Navigator
*/
Navigator.prototype.mimeTypes = new Array();
/**
* Property platform
* @type String
* @memberOf Navigator
*/
Navigator.prototype.platform = "";
/**
* Property plugins
* @type Array
* @memberOf Navigator
*/
Navigator.prototype.plugins = new Array();
/**
* Property userAgent
* @type String
* @memberOf Navigator
*/
Navigator.prototype.userAgent = "";
/**
* function javaEnabled()
* @returns {Boolean}
* @memberOf Navigator
*/
Navigator.prototype.javaEnabled = function(){return false;};
/**
* Object Screen()
* @super Object
* @constructor
* @since Common Usage, no standard
*/
function Screen(){};
Screen.prototype = new Object();
Screen.prototype.screen = new Screen();
/**
* Property availHeight
* @type Number
* @memberOf Screen
*/
Navigator.prototype.availHeight = 0;
/**
* Property availWidth
* @type Number
* @memberOf Screen
*/
Navigator.prototype.availWidth = 0;
/**
* Property colorDepth
* @type Number
* @memberOf Screen
*/
Navigator.prototype.colorDepth = 0;
/**
* Property height
* @type Number
* @memberOf Screen
*/
Navigator.prototype.height = 0;
/**
* Property width
* @type Number
* @memberOf Screen
*/
Navigator.prototype.width = 0;
Event.prototype=new Object();
// PhaseType
Event.prototype.CAPTURING_PHASE = 1;
Event.prototype.AT_TARGET = 2;
Event.prototype.BUBBLING_PHASE = 3;
Event.prototype.type="";
Event.prototype.target=new EventTarget();
Event.prototype.currentTarget=new EventTarget();
Event.prototype.eventPhase=0;
Event.prototype.bubbles=false;
Event.prototype.cancelable=false;
Event.prototype.timeStamp=0;
Event.prototype.stopPropagation=function(){};
Event.prototype.preventDefault=function(){};
/**
* @param {String} eventTypeArg
* @param {Boolean} canBubbleArg
* @param {Boolean} cancelableArg
*/
Event.prototype.initEvent=function(eventTypeArg,
canBubbleArg,
cancelableArg){};
function EventListener(){};
EventListener.prototype=new Object();
/**
* @param {Event} event
* @memberOf EventListener
*/
EventListener.prototype.handleEvent=function(event){};
function EventTarget(){};
EventTarget.prototype=new Object();
/*
* These functions may need to be moved into a browser specific library.
*/
/**
* @memberOf Window
* @param event {Event}
* @throws {EventException}
*/
EventTarget.prototype.dispatchEvent=function(event){};
// https://developer.mozilla.org/en-US/docs/DOM/element.addEventListener
/**
* @memberOf Window
* @param {String} type
* @param {EventListener} listener
* @param {Boolean} useCapture
*/
EventTarget.prototype.addEventListener=function(type, listener, useCapture){};
// https://developer.mozilla.org/en-US/docs/DOM/element.removeEventListener
/**
* @memberOf Window
* @param {String} type
* @param {EventListener} listener
* @param {Boolean} useCapture
*/
EventTarget.prototype.removeEventListener=function(type, listener, useCapture){};
/*******************************************************************************
* Copyright (c) 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************/
/**
* function querySelector(selectors)
* http://www.w3.org/TR/2012/PR-selectors-api-20121213
* @param {String} selectors
* @memberOf Document
* @returns {Element}
*/
Document.prototype.querySelector=function(selectors){return new Element();};
/**
* function querySelectorAll(selectors)
* http://www.w3.org/TR/2012/PR-selectors-api-20121213
* @param {String} selectors
* @memberOf Document
* @returns {NodeList}
*/
Document.prototype.querySelectorAll=function(selectors){return new NodeList();};
/**
* function querySelector(selectors)
* http://www.w3.org/TR/2012/PR-selectors-api-20121213
* @param {String} selectors
* @memberOf DocumentFragment
* @returns {Element}
*/
DocumentFragment.prototype.querySelector=function(selectors){return new Element();};
/**
* function querySelectorAll(selectors)
* http://www.w3.org/TR/2012/PR-selectors-api-20121213
* @param {String} selectors
* @memberOf DocumentFragment
* @returns {NodeList}
*/
DocumentFragment.prototype.querySelectorAll=function(selectors){return new NodeList();};
/**
* function querySelector(selectors)
* http://www.w3.org/TR/2012/PR-selectors-api-20121213
* @param {String} selectors
* @memberOf Element
* @returns {Element}
*/
Element.prototype.querySelector=function(selectors){return new Element();};
/**
* function querySelectorAll(selectors)
* http://www.w3.org/TR/2012/PR-selectors-api-20121213
* @param {String} selectors
* @memberOf Element
* @returns {NodeList}
*/
Element.prototype.querySelectorAll=function(selectors){return new NodeList();};
/**
* Property state
* @type Object
* @memberOf History
*/
History.prototype.state=new Object();
/**
* function pushState(data,title,url)
* http://www.w3.org/TR/2012/CR-html5-20121217/browsers.html#history
* @param {Object} data
* @param {String} title
* @param {String} url - optional
* @memberOf History
*/
History.prototype.pushState=function(data,title,url){};
/**
* function replaceState(data,title,url)
* http://www.w3.org/TR/2012/CR-html5-20121217/browsers.html#history
* @param {Object} data
* @param {String} title
* @param {String} url - optional
* @memberOf History
*/
History.prototype.replaceState=function(data,title,url){};
/**
* Property sessionStorage
* http://www.w3.org/TR/2011/CR-webstorage-20111208
* @type Storage
* @memberOf Window
*/
Window.prototype.sessionStorage=new Storage();
/**
* Property localStorage
* http://www.w3.org/TR/2011/CR-webstorage-20111208
* @type Storage
* @memberOf Window
*/
Window.prototype.localStorage=new Storage();
/**
* Object Storage
* http://www.w3.org/TR/2011/CR-webstorage-20111208
*/
function Storage(){};
Storage.prototype=new Object();
/**
* Property length
* http://www.w3.org/TR/2011/CR-webstorage-20111208
* @type Number
* @memberOf Storage
*/
Storage.prototype.length=new Number();
/**
* function key(index)
* http://www.w3.org/TR/2011/CR-webstorage-20111208
* @param {Number} index
* @memberOf Storage
* @returns String
*/
Storage.prototype.key=function(index){return new String();};
/**
* function getItem(key)
* http://www.w3.org/TR/2011/CR-webstorage-20111208
* @param {String} key
* @memberOf Storage
* @returns String
*/
Storage.prototype.getItem=function(key){return new String();};
/**
* function setItem(key,value)
* http://www.w3.org/TR/2011/CR-webstorage-20111208
* @param {String} key
* @param {String} value
* @memberOf Storage
*/
Storage.prototype.setItem=function(key,value){};
/**
* function removeItem(key)
* http://www.w3.org/TR/2011/CR-webstorage-20111208
* @param {String} key
* @memberOf Storage
*/
Storage.prototype.removeItem=function(key){};
/**
* function clear()
* http://www.w3.org/TR/2011/CR-webstorage-20111208
* @memberOf Storage
*/
Storage.prototype.clear=function(){};
/**
* Object WebSocket
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @constructor
* @param {String} url
*/
function WebSocket(url){};
WebSocket.prototype=new Object();
/**
* Constant WebSocket.CONNECTING=0
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @constant
* @type Number
*/
WebSocket.prototype.CONNECTING=0;
/**
* Constant WebSocket.OPEN=1
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @constant
* @type Number
*/
WebSocket.prototype.OPEN=1;
/**
* Constant WebSocket.CLOSING=2
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @constant
* @type Number
*/
WebSocket.prototype.CLOSING=2;
/**
* Constant WebSocket.CLOSED=3
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @constant
* @type Number
*/
WebSocket.prototype.CLOSED=3;
/**
* Property url
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @type String
* @memberOf WebSocket
*/
WebSocket.prototype.url=new String();
/**
* Property readyState
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @type Number
* @memberOf WebSocket
*/
WebSocket.prototype.readyState=new Number();
/**
* Property bufferedAmount
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @type Number
* @memberOf WebSocket
*/
WebSocket.prototype.bufferedAmount=new Number();
/**
* Property extensions
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @type String
* @memberOf WebSocket
*/
WebSocket.prototype.extensions=new String();
/**
* Property protocol
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @type String
* @memberOf WebSocket
*/
WebSocket.prototype.protocol=new String();
/**
* Property binaryType
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @type String
* @memberOf WebSocket
*/
WebSocket.prototype.binaryType=new String();
/**
* function close(code,reason)
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @param {Number} code - optional
* @param {String} reason - optional
* @memberOf WebSocket
*/
WebSocket.prototype.close=function(code,reason){};
/**
* function send(data)
* http://www.w3.org/TR/2012/CR-websockets-20120920
* @param {Object} data - may be a String, Blob, ArrayBuffer, or ArrayBufferView
* @memberOf WebSocket
*/
WebSocket.prototype.send=function(data){};
/**
* Property geolocation
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Geolocation
* @memberOf Navigator
*/
Navigator.prototype.geolocation=new Geolocation();
/**
* Object Geolocation
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
*/
function Geolocation(){};
Geolocation.prototype=new Object();
/**
* function getCurrentPosition(successCallback,errorCallback,options)
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510/
* @param {Function} successCallback (Position pos)
* @param {Function} errorCallback (PositionError error) - optional
* @param {PositionOptions} options - optional
* @memberOf Geolocation
*/
Geolocation.prototype.getCurrentPosition=function(successCallback,errorCallback,options){};
/**
* function watchPosition(successCallback,errorCallback,options)
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510/
* @param {Function} successCallback (Position pos)
* @param {Function} errorCallback (PositionError error) - optional
* @param {PositionOptions} options - optional
* @memberOf Geolocation
* @returns {Number}
*/
Geolocation.prototype.watchPosition=function(successCallback,errorCallback,options){return new Number();};
/**
* function clearWatch(watchId)
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @param {Number} watchId
* @memberOf Geolocation
*/
Geolocation.prototype.clearWatch=function(watchId){};
/**
* Object Coordinates
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
*/
function Coordinates(){};
Coordinates.prototype=new Object();
/**
* Property latitude
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf Coordinates
*/
Coordinates.prototype.latitude=new Number();;
/**
* Property longitude
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf Coordinates
*/
Coordinates.prototype.longitude=new Number();;
/**
* Property altitude
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf Coordinates
*/
Coordinates.prototype.altitude=new Number();;
/**
* Property accuracy
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf Coordinates
*/
Coordinates.prototype.accuracy=new Number();;
/**
* Property altitudeAccuracy
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf Coordinates
*/
Coordinates.prototype.altitudeAccuracy=new Number();;
/**
* Property heading
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf Coordinates
*/
Coordinates.prototype.heading=new Number();;
/**
* Property speed
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf Coordinates
*/
Coordinates.prototype.speed=new Number();
/**
* Object Position
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
*/
function Position(){};
Position.prototype=new Object();
/**
* Property coords
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Coordinates
* @memberOf Position
*/
Position.prototype.coords=new Coordinates();
/**
* Property timestamp
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf Position
*/
Position.prototype.timestamp=new Number;
/**
* Object PositionError
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
*/
function PositionError(){};
PositionError.prototype=new Object();
/**
* Constant PositionError.PERMISSION_DENIED=1
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @constant
* @type Number
*/
PositionError.prototype.PERMISSION_DENIED=1;
/**
* Constant PositionError.POSITION_UNAVAILABLE=2
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @constant
* @type Number
*/
PositionError.prototype.POSITION_UNAVAILABLE=2;
/**
* Constant PositionError.TIMEOUT=3
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @constant
* @type Number
*/
PositionError.prototype.TIMEOUT=3;
/**
* Property code
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf PositionError
*/
PositionError.prototype.code=new Number();
/**
* Property message
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type String
* @memberOf PositionError
*/
PositionError.prototype.message=new String();
/**
* Object PositionOptions
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
*/
function PositionOptions(){};
PositionOptions.prototype=new Object();
/**
* Property enableHighAccuracy
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Boolean
* @memberOf PositionOptions
*/
PositionOptions.prototype.enableHighAccuracy=new Boolean();
/**
* Property timeout
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf PositionOptions
*/
PositionOptions.prototype.timeout=new Number();
/**
* Property maximumAge
* http://www.w3.org/TR/2012/PR-geolocation-API-20120510
* @type Number
* @memberOf PositionOptions
*/
PositionOptions.prototype.maximumAge=new Number();
/**
* Object TimeRanges
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
*/
function TimeRanges(){};
TimeRanges.prototype=new Object();
/**
* Property length
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf TimeRanges
*/
TimeRanges.prototype.length=new Number();
/**
* function start(index)
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @param {Number} index
* @memberOf TimeRanges
* @returns {Number}
*/
function start(index) {return new Number();};
/**
* function end(index)
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @param {Number} index
* @memberOf TimeRanges
* @returns {Number}
*/
function end(index) {return new Number();};
/**
* Object MediaError
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
*/
function MediaError(){};
MediaError.prototype=new Object();
/**
* Constant MediaError.MEDIA_ERR_ABORTED=1
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
MediaError.prototype.MEDIA_ERR_ABORTED=1;
/**
* Constant MediaError.MEDIA_ERR_NETWORK=2
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
MediaError.prototype.MEDIA_ERR_NETWORK=2;
/**
* Constant MediaError.MEDIA_ERR_DECODED=3
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
MediaError.prototype.MEDIA_ERR_DECODE=3;
/**
* Constant MediaError.MEDIA_ERR_SRC_NOT_SUPPORTED=4
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
MediaError.prototype.MEDIA_ERR_SRC_NOT_SUPPORTED=4;
/**
* Property code
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf MediaError
*/
MediaError.prototype.code=new Number();
/**
* Object HTMLMediaElement
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @augments HTMLElement
* @see HTMLElement
*/
function HTMLMediaElement(){};
HTMLMediaElement.prototype = new HTMLElement();
/**
* Property src
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type String
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.src=new String();
/**
* Property currentSrc
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type String
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.currentSrc=new String();
/**
* Property crossOrigin
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type String
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.crossOrigin=new String();
/**
* Constant HTMLMediaElement.NETWORK_EMPTY=0
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
HTMLMediaElement.prototype.NETWORK_EMPTY=0;
/**
* Constant HTMLMediaElement.NETWORK_IDLE=1
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
HTMLMediaElement.prototype.NETWORK_IDLE=1;
/**
* Constant HTMLMediaElement.NETWORK_LOADING=2
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
HTMLMediaElement.prototype.NETWORK_LOADING=2;
/**
* Constant HTMLMediaElement.NETWORK_NO_SOURCE=3
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
HTMLMediaElement.prototype.NETWORK_NO_SOURCE=3;
/**
* Property networkState
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.networkState=new Number();
/**
* Property preload
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type String
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.preload=new String();
/**
* Property buffered
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type TimeRanges
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.buffered=new TimeRanges();
/**
* function load()
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.load=function(){};
/**
* function canPlayType(type)
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @param {String} type
* @memberOf HTMLMediaElement
* @returns {String}
*/
HTMLMediaElement.prototype.canPlayType=function(type){new String();};
/**
* Constant HTMLMediaElement.HAVE_NOTHING=0
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
HTMLMediaElement.prototype.HAVE_NOTHING=0;
/**
* Constant HTMLMediaElement.HAVE_METADATA=1
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
HTMLMediaElement.prototype.HAVE_METADATA=1;
/**
* Constant HTMLMediaElement.HAVE_CURRENT_DATA=2
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
HTMLMediaElement.prototype.HAVE_CURRENT_DATA=2;
/**
* Constant HTMLMediaElement.HAVE_FUTURE_DATA=3
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
HTMLMediaElement.prototype.HAVE_FUTURE_DATA=3;
/**
* Constant HTMLMediaElement.HAVE_ENOUGH_DATA=4
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @constant
* @type Number
*/
HTMLMediaElement.prototype.HAVE_ENOUGH_DATA=4;
/**
* Property readyState
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.readyState=new Number();
/**
* Property seeking
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Boolean
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.seeking=new Boolean();
/**
* Property currentTime
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.currentTime=new Number();
/**
* Property initialTime
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.initialTime=new Number();
/**
* Property duration
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.duration=new Number();
/**
* Property startOffsetTime
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Date
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.startOffsetTime=new Date();
/**
* Property paused
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Boolean
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.paused=new Boolean();
/**
* Property defaultPlaybackRate
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.defaultPlaybackRate=new Number();
/**
* Property playbackRate
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.playbackRate=new Number();
/**
* Property played
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type TimeRanges
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.played=new TimeRanges();
/**
* Property seekable
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type TimeRanges
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.seekable=new TimeRanges();
/**
* Property ended
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Boolean
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.ended=new Boolean();
/**
* Property autoplay
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Boolean
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.autoplay=new Boolean();
/**
* Property loop
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Boolean
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.loop=new Boolean();
/**
* function play()
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.play=function(){};
/**
* function pause()
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.pause=function(){};
/**
* Property controls
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Boolean
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.controls=new Boolean();
/**
* Property volume
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.volume=new Number();
/**
* Property muted
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Boolean
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.muted=new Boolean();
/**
* Property defaultMuted
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Boolean
* @memberOf HTMLMediaElement
*/
HTMLMediaElement.prototype.defaultMuted=new Boolean();
/**
* Object HTMLAudioElement
* http://www.w3.org/TR/2012/WD-html5-20120329/the-audio-element.html
* @augments HTMLMediaElement
* @constructor
* @param {String} src
* @see HTMLMediaElement
*/
function HTMLAudioElement(src){};
HTMLAudioElement.prototype = new HTMLMediaElement();
/**
* Object HTMLVideoElement
* http://www.w3.org/TR/2012/WD-html5-20120329/the-audio-element.html
* @augments HTMLMediaElement
* @see HTMLMediaElement
*/
function HTMLVideoElement(){};
HTMLVideoElement.prototype = new HTMLMediaElement();
/**
* Property width
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLVideoElement
*/
HTMLVideoElement.prototype.width=new Number();
/**
* Property height
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLVideoElement
*/
HTMLVideoElement.prototype.height=new Number();
/**
* Property videoWidth
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLVideoElement
*/
HTMLVideoElement.prototype.videoWidth=new Number();
/**
* Property videoHeight
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type Number
* @memberOf HTMLVideoElement
*/
HTMLVideoElement.prototype.videoHeight=new Number();
/**
* Property poster
* http://www.w3.org/TR/2012/WD-html5-20120329/media-elements.html
* @type String
* @memberOf HTMLVideoElement
*/
HTMLVideoElement.prototype.poster=new String();
/*******************************************************************************
* Copyright (c) 2008, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************
* Please see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html
*/
/**
* Object Object()
* @constructor
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function Object(){};
/**
* function toString()
* @memberOf Object
* @returns {String}
* @see Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Object.prototype.toString = function(){return "";};
/**
* function toLocaleString()
* @memberOf Object
* @returns {String}
* @see Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Object.prototype.toLocaleString = function(){return "";};
/**
* function valueOf()
* @memberOf Object
* @returns {Object}
* @see Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Object.prototype.valueOf = function(){return new Object();};
/**
* function hasOwnProperty(name)
* @memberOf Object
* @param {String} name
* @returns {Boolean}
* @see Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Object.prototype.hasOwnProperty = function(name){return true;};
/**
* function isPrototypeOf(o)
* @memberOf Object
* @param {Object} o
* @returns {Boolean}
* @see Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Object.prototype.isPrototypeOf = function(o){return true;};
/**
* function propertyIsEnumerable(name)
* @memberOf Object
* @param {Object} name
* @returns {Boolean}
* @see Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Object.prototype.propertyIsEnumerable = function(name){return true;};
/**
* Property constructor
* @type Function
* @memberOf Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Object.prototype.constructor = new Function();
/**
* Object String()
* @constructor
* @extends Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function String(){}
String.prototype = new Object();
/**
* static function fromCharCode(charCode1, ...)
* @memberOf String
* @param {Number} charCode
* @returns {String}
* @static
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.fromCharCode = function(charCode){return "";};
/**
* Property length
* @type Number
* @memberOf String
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.length = 1;
/**
* function charAt(position)
* @memberOf String
* @param {Number} position
* @returns {String}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.charAt = function(position){return "";};
/**
* function charCodeAt(position)
* @memberOf String
* @param {Number} position
* @returns {Number}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.charCodeAt = function(position){return 0;};
/**
* function concat(value1, ...)
* @memberOf String
* @param {String} value
* @returns {String}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.concat = function(value){return "";};
/**
* function indexOf(searchString, startPosition)
* @memberOf String
* @param {String} searchString
* @param {Number} startPosition
* @returns {Number}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.indexOf = function(searchString, startPosition){return 1;};
/**
* function lastIndexOf(searchString, startPosition)
* @memberOf String
* @param {String} searchString
* @param {Number} startPosition
* @returns {Number}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.lastIndexOf = function(searchString, startPosition){return 1;};
/**
* function localeCompare(otherString)
* @memberOf String
* @param {String} otherString
* @returns {Number}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.localeCompare = function(otherString){return 0;};
/**
* function match(regexp)
* @memberOf String
* @param {RegExp} regexp
* @returns {Array}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.match = function(regexp){return [];};
/**
* function replace(regexp, replaceValue)
* @memberOf String
* @param {RegExp} regexp
* @param {String} replaceValue
* @returns {String}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.replace = function(regexp, replaceValue){return "";};
/**
* function search(regexp)
* @memberOf String
* @param {RegExp} regexp
* @returns {Number}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.search = function(regexp){return 1;};
/**
* function slice(start, end)
* @memberOf String
* @param {Number} start
* @param {Number} end
* @returns {String}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.slice = function(start, end){return "";};
/**
* function split(separator, limit)
* @memberOf String
* @param {String} separator
* @param {Number} limit
* @returns {Array}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.split = function(separator, limit){return [];};
/**
* function substring(start, end)
* @memberOf String
* @param {Number} start
* @param {Number} end
* @returns {String}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.substring = function(start, end){return "";};
/**
* function toLowerCase()
* @memberOf String
* @returns {String}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.toLowerCase = function(){return "";};
/**
* function toLocaleLowerCase()
* @memberOf String
* @returns {String}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.toLocaleLowerCase = function(){return "";};
/**
* function toUpperCase()
* @memberOf String
* @returns {String}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.toUpperCase= function (){return "";};
/**
* function toLocaleUpperCase()
* @memberOf String
* @returns {String}
* @see String
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
String.prototype.toLocaleUpperCase = function(){return "";};
/**
* Object Number()
* @constructor
* @extends Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function Number(){}
Number.prototype = new Object();
/**
* property MIN_VALUE
* @type Number
* @memberOf Number
* @static
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Number.MIN_VALUE = 0;
/**
* property MAX_VALUE
* @type Number
* @memberOf Number
* @static
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Number.MAX_VALUE = 0 ;
/**
* property NaN
* @type Number
* @memberOf Number
* @static
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Number.NaN = 0;
/**
* property NEGATIVE_INFINITY
* @type Number
* @memberOf Number
* @static
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Number.NEGATIVE_INFINITY = 0;
/**
* property POSITIVE_INFINITY
* @type Number
* @memberOf Number
* @static
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Number.POSITIVE_INFINITY = 0;
/**
* function toFixed(fractionDigits)
* @memberOf Number
* @param {Number} fractionDigits
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Number.prototype.toFixed = function(fractionDigits){return "";};
/**
* function toExponential(fractionDigits)
* @memberOf Number
* @param {Number} fractionDigits
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Number.prototype.toExponential = function(fractionDigits){return "";};
/**
* function toPrecision(precision)
* @memberOf Number
* @param {Number} fractionDigits
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Number.prototype.toPrecision = function(fractionDigits){return "";};
/**
* Object Boolean()
* @constructor
* @extends Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function Boolean(){};
Boolean.prototype = new Object();
/**
* Object Array()
* @constructor
* @extends Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function Array(){};
Array.prototype = new Object();
/**
* Property length
* @type Number
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.length = 1;
/**
* function concat(args)
* @param {Array} args
* @returns {Array}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.concat = function(args){return [];};
/**
* function join(seperator)
* @param {String} seperator
* @returns {Array}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.join = function(seperator){return [];};
/**
* function pop()
* @returns {Object}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.pop = function(){return new Object();};
/**
* function push(args)
* @param {Array} args
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.push = function(args){};
/**
* function reverse()
* @returns {Array}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.reverse = function(){return [];};
/**
* function shift()
* @returns {Object}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.shift = function(){return new Object();};
/**
* function slice(start, end)
* @param {Number} start
* @param {Number} end
* @returns {Array}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.slice = function(start, end){return [];};
/**
* function sort(funct)
* @param {Function} funct
* @returns {Array}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.sort = function(funct){return [];};
/**
* function splice(start, deletecount, items)
* @param {Number} start
* @param {Number} deletecount
* @param {Array} items
* @returns {Array}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.splice = function(start, deletecount, items){return [];};
/**
* function unshift(items)
* @param {Object} values
* @returns {Number}
* @memberOf Array
* @see Array
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Array.prototype.unshift = function(values){return 1;};
/**
* Object Function()
* @constructor
* @extends Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function Function(){};
Function.prototype = new Object();
/**
* function apply (thisObject, argArray)
* @param {Object} thisObject
* @param {Array} argArray
* @returns {Object}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Function.prototype.apply = function(thisArg, argArray){return new Object();};
/**
* function call (thisObject, args)
* @param {Object} thisObject
* @param {Object} args
* @returns {Object}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Function.prototype.call = function(thisObject, args){return new Object();};
/**
* property length
* @type Number
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Function.prototype.length = 0;
/**
* Object Date(s)
* @constructor
* @param {String} s
* @extends Object
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function Date(s){};
Date.prototype = new Object();
/**
* function UTC(hour, min, sec, ms)
* @memberOf Date
* @param {Number} hour
* @param {Number} min
* @param {Number} sec
* @param {Number} ms
* @returns {Number}
* @static
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.UTC = function(hour, min, sec, ms){return 0;};
/**
* function parse(string)
* @memberOf Date
* @param {String} string
* @returns {Number}
* @static
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.parse = function(string){return 0;};
/**
* function toDateString()
* @memberOf Date
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.toDateString = function(){return "";};
/**
* function toTimeString()
* @memberOf Date
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.toTimeString = function(){return "";};
/**
* function toLocaleString()
* @memberOf Date
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.toLocaleString = function(){return "";};
/**
* function toLocaleDateString()
* @memberOf Date
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.toLocaleDateString = function(){return "";};
/**
* function toLocaleTimeString()
* @memberOf Date
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.toLocaleTimeString = function(){return "";};
/**
* function valueOf()
* @memberOf Date
* @returns {Object}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.valueOf = function(){return new Object();};
/**
* function getFullYear()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getFullYear = function(){return 0;};
/**
* function getTime()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getTime = function(){return 0;};
/**
* function getUTCFullYear()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getUTCFullYear = function(){return 0;};
/**
* function getMonth()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getMonth = function(){return 0;};
/**
* function getUTCMonth()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getUTCMonth = function(){return 0;};
/**
* function getDate()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getDate = function(){return 0;};
/**
* function getUTCDate()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getUTCDate = function(){return 0;};
/**
* function getDay()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getDay = function(){return 0;};
/**
* function getUTCDay()
* @memberOf Date
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getUTCDay=function(){return 0;};
/**
* function getHours()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getHours = function(){return 0;};
/**
* function getUTCHours()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getUTCHours = function(){return 0;};
/**
* function getMinutes()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getMinutes = function(){return 0;};
/**
* function getUTCMinutes()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getUTCMinutes = function(){return 0;};
/**
* function getSeconds()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getSeconds = function(){return 0;};
/**
* function getUTCSeconds()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getUTCSeconds = function(){return 0;};
/**
* function getMilliseconds()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getMilliseconds = function(){return 0;};
/**
* function getUTCMilliseconds()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getUTCMilliseconds = function(){return 0;};
/**
* function getTimezoneOffset()
* @memberOf Date
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.getTimezoneOffset = function(){return 0;};
/**
* function setTime(value)
* @memberOf Date
* @returns {Number}
* @param {Number} value
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setTime = function(value){return 0;};
/**
* function setMilliseconds(value)
* @memberOf Date
* @returns {Number}
* @param {Number} value
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setMilliseconds = function(value){return 0;};
/**
* function setUTCMilliseconds(ms)
* @memberOf Date
* @returns {Number}
* @param {Number} ms
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setUTCMilliseconds = function(ms){return 0;};
/**
* function setSeconds(sec,ms)
* @memberOf Date
* @returns {Number}
* @param {Number} sec
* @param {Number} ms
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setSeconds = function(sec,ms){return 0;};
/**
* function setUTCSeconds(sec,ms)
* @memberOf Date
* @returns {Number}
* @param {Number} sec
* @param {Number} ms
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setUTCSeconds=function(sec,ms){return 0;};
/**
* function setMinutes(min,sec,ms)
* @memberOf Date
* @returns {Number}
* @param {Number} min
* @param {Number} sec
* @param {Number} ms
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setMinutes=function(min,sec,ms){return 0;};
/**
* function setUTCMinute(min,sec,ms)
* @memberOf Date
* @returns {Number}
* @param {Number} min
* @param {Number} sec
* @param {Number} ms
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setUTCMinute = function(min,sec,ms){return 0;};
/**
* function setHours(hour, min,sec,ms)
* @memberOf Date
* @returns {Number}
* @param {Number} hour
* @param {Number} min
* @param {Number} sec
* @param {Number} ms
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setHours = function(hour,min,sec,ms){return 0;};
/**
* function setUTCHours(hour, min,sec,ms)
* @memberOf Date
* @returns {Number}
* @param {Number} hour
* @param {Number} min
* @param {Number} sec
* @param {Number} ms
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setUTCHours = function(hour,min,sec,ms){return 0;};
/**
* function setDate(date)
* @memberOf Date
* @returns {Number}
* @param {Number} date
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setDate = function(date){return 0;};
/**
* function setUTCDate(date)
* @memberOf Date
* @returns {Number}
* @param {Number} date
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setUTCDate = function(date){return 0;};
/**
* function setMonth(month,date)
* @memberOf Date
* @returns {Number}
* @param {Number} date
* @param {Number} month
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setMonth = function(month,date){return 1;};
/**
* function setUTCMonth(month,date)
* @memberOf Date
* @returns {Number}
* @param {Number} date
* @param {Number} month
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setUTCMonth = function(month,date){return 1;};
/**
* function setFullYear(month,date)
* @memberOf Date
* @returns {Number}
* @param {Number} date
* @param {Number} month
* @param {Number} year
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setFullYear = function(year, month,date){return 0;};
/**
* function setUTCFullYear(month,date)
* @memberOf Date
* @returns {Date}
* @param {Number} date
* @param {Number} month
* @param {Number} year
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.setUTCFullYear = function(year, month,date){};
/**
* function toUTCString()
* @memberOf Date
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Date.prototype.toUTCString = function(){return "";};
/**
* Property NaN
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
var NaN=0;
/**
* Property Infinity
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
var Infinity=0;
/**
* function eval(s)
* @param {String} s
* @type Object
* @returns {Object}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function eval(s){return new Object();};
//@GINO: Bug 197987 (Temp Fix)
/**
* Property debugger
* @description Debugger keyword
*/
var debugger=null;
/**
* Property undefined
* @description undefined
*/
var undefined=null;
/**
* function parseInt(s,radix)
* @param {String} s
* @param {Number} radix
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function parseInt(s,radix){return 0;};
/**
* function parseFloat(s)
* @param {String} s
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function parseFloat(s){return 0;};
/**
* function escape(s)
* @param {String} s
* @type String
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function escape(s){return "";};
/**
* function unescape(s)
* @param {String} s
* @type String
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function unescape(s){return "";};
/**
* function isNaN(number)
* @param {String} number
* @type Boolean
* @returns {Boolean}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function isNaN(number){return false;};
/**
* function isFinite(number)
* @param {String} number
* @type Boolean
* @returns {Boolean}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function isFinite(number){return false;};
/**
* function decodeURI(encodedURI)
* @param {String} encodedURI
* @type String
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function decodeURI(encodedURI){return "";};
/**
* @param {String} uriComponent
* @type String
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function decodeURIComponent(uriComponent){return "";};
/**
* function encodeURIComponent(uriComponent)
* @param {String} uriComponent
* @type String
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function encodeURIComponent(uriComponent){return "";};
/**
* function encodeURIComponent(URI)
* @param {String} URI
* @type String
* @returns {String}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function encodeURI(URI){return "";};
/**
* Object Math(\s)
* @super Object
* @constructor
* @memberOf Math
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function Math(){};
Math.prototype=new Object();
/**
* Property E
* @memberOf Math
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.E=0;
/**
* Property LN10
* @memberOf Math
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.LN10=0;
/**
* Property LN2
* @memberOf Math
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.LN2=0;
/**
* Property LOG2E
* @memberOf Math
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.LOG2E=0;
/**
* Property LOG10E
* @memberOf Math
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.LOG10E=0;
/**
* Property PI
* @memberOf Math
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.PI=0;
/**
* Property SQRT1_2
* @memberOf Math
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.SQRT1_2=0;
/**
* Property SQRT2
* @memberOf Math
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.SQRT2=0;
/**
* function abs(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.abs=function(x){return 0;};
/**
* function acos(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.acos=function(x){return 0;};
/**
* function asin(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.asin=function(x){return 0;};
/**
* function atan(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.atan=function(x){return 0;};
/**
* function atan2(x,y)
* @memberOf Math
* @param {Number} x
* @param {Number} y
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.atan2=function(x,y){return 0;};
/**
* function ceil(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.ceil=function(x){return 0;};
/**
* function cos(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.cos=function(x){return 0;};
/**
* function exp(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.exp=function(x){return 0;};
/**
* function floor(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.floor=function(x){return 0;};
/**
* function log(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.log=function(x){return 0;};
/**
* function max(arg)
* @memberOf Math
* @param {Number} args
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.max=function(args){return 0;};
/**
* function min(arg)
* @memberOf Math
* @param {Number} args
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.min=function(args){return 0;};
/**
* function pow(x,y)
* @memberOf Math
* @param {Number} x
* @param {Number} y
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.pow=function(x,y){return 0;};
/**
* function pow()
* @memberOf Math
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.random=function(){return 0;};
/**
* function round(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.round=function(x){return 0;};
/**
* function sin(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.sin=function(x){return 0;};
/**
* function sqrt(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.sqrt=function(x){return 0;};
/**
* function tan(x)
* @memberOf Math
* @param {Number} x
* @type Number
* @returns {Number}
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Math.tan=function(x){return 0;};
/**
* Object RegExp()
* @super Object
* @constructor
* @memberOf RegExp
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function RegExp(){};
RegExp.prototype=new Object();
/**
* function exec(string)
* @param {String} string
* @returns {Array}
* @type Array
* @memberOf RegExp
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
RegExp.prototype.exec=function(string){return [];};
/**
* function test(string)
* @param {String} string
* @returns {Boolean}
* @type Boolean
* @memberOf RegExp
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
RegExp.prototype.test=function(string){return false;};
/**
* property source
* @type String
* @memberOf RegExp
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
RegExp.prototype.source="";
/**
* property global
* @type Boolean
* @memberOf RegExp
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
RegExp.prototype.global=false;
/**
* property ignoreCase
* @type Boolean
* @memberOf RegExp
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
RegExp.prototype.ignoreCase=false;
/**
* property multiline
* @type Boolean
* @memberOf RegExp
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
RegExp.prototype.multiline=false;
/**
* property lastIndex
* @type Number
* @memberOf RegExp
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
RegExp.prototype.lastIndex=0;
/**
* Object Error(message)
* @super Object
* @constructor
* @param {String} message
* @memberOf Error
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function Error(message){};
Error.prototype=new Object();
/**
* property name
* @type String
* @memberOf Error
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Error.prototype.name="";
/**
* property message
* @type String
* @memberOf Error
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
Error.prototype.message="";
/**
* Object EvalError()
* @super Error
* @constructor
*
* @memberOf EvalError
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function EvalError(){};
EvalError.prototype=new Error("");
/**
* Object RangeError()
* @super Error
* @constructor
*
* @memberOf RangeError
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function RangeError(){};
RangeError.prototype=new Error("");
/**
* Object ReferenceError()
* @super Error
* @constructor
*
* @memberOf ReferenceError
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function ReferenceError(){};
ReferenceError.prototype=new Error("");
/**
* Object SyntaxError()
* @super Error
* @constructor
*
* @memberOf SyntaxError
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function SyntaxError(){};
SyntaxError.prototype=new Error("");
/**
* Object TypeError()
* @super Error
* @constructor
*
* @memberOf TypeError
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function TypeError(){};
TypeError.prototype=new Error("");
/**
* Object URIError()
* @super Error
* @constructor
*
* @memberOf URIError
* @since Standard ECMA-262 3rd. Edition
* @since Level 2 Document Object Model Core Definition.
*/
function URIError(){};
URIError.prototype=new Error("");
//support for debugger keyword
var debugger = null;
\ No newline at end of file
/*******************************************************************************
* Copyright (c) 2009, 2011 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
******************************************************************************
*
* Based on information from https://developer.mozilla.org/En/XMLHttpRequest
* and http://msdn2.microsoft.com/en-us/library/ms533062.aspx
**/
/**
* function createRequest
* @type XMLHttpRequest
* @memberOf Window
*/
Window.prototype.createRequest= function(){return new XMLHttpRequest();};
/**
* Object XMLHttpRequest
* @type constructor
*/
XMLHttpRequest.prototype=new Object();
function XMLHttpRequest(){};
/**
* function onreadystatechange
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.onreadystatechange=function(){};
/**
* property readyState
* @type Number
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.readyState=0;
/**
* property responseText
* @type String
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.responseText="";
/**
* property responseXML
* @type Document
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.responseXML=new Document();
/**
* property status
* @type Number
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.status=0;
/**
* property statusText
* @type String
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.statusText="";
/**
* function abort()
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.abort=function(){};
/**
* function getAllResponseHeaders()
* @type String
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.getAllResponseHeaders=function(){return "";};
/**
* function open(method, url, async, username, password)
* @param {String} method
* @param {String} url
* @param {Boolean} optional async
* @param {String} optional username
* @param {String} optional password
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.open=function(method, url, async, username, password){};
/**
* function send(body)
* @param {Object} body
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.send=function(body){};
/**
* function setRequestHeader(header,value)
* @param {String} header
* @param {String} value
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.setRequestHeader=function(header,value){};
/**
* function getAllResponseHeaders()
* @param {String} header
* @type String
* @memberOf XMLHttpRequest
*/
XMLHttpRequest.prototype.getResponseHeader=function(header){return "";};
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<typeInfoHistroy/>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<qualifiedTypeNameHistroy/>
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<section name="completion_proposal_size">
</section>
<section name="JavaElementSearchActions">
</section>
</section>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<servers>
<server auto-publish-setting="2" auto-publish-time="1" configuration-id="/Servers/Tomcat v7.0 Server at localhost-config" deployDir="wtpwebapps" hostname="localhost" id="Tomcat v7.0 Server at localhost" name="Tomcat v7.0 Server at localhost" runtime-id="Apache Tomcat v7.0" server-type="org.eclipse.jst.server.tomcat.70" server-type-id="org.eclipse.jst.server.tomcat.70" start-timeout="45" stop-timeout="15" testEnvironment="true" timestamp="0"/>
</servers>
#
#Thu Feb 21 09:14:23 COT 2019
task-tag-projects-already-scanned=AngularJsRestApiDemo
<?xml version="1.0" encoding="UTF-8"?>
<section name="Workbench">
<section name="contentassistsize">
</section>
</section>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
<nextCatalog catalog="user_catalog.xml" id="user_catalog"/>
<nextCatalog catalog="system_catalog.xml" id="system_catalog"/>
</catalog>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_1_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_orm_1_0.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_orm_1_1.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_1_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_orm_1_2.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_orm_2_0.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_orm_2_1.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_2_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_orm_2_2.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_2_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_orm_2_3.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_2_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_orm_2_4.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_orm_2_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.persistence.jpa_2.7.1.v20171221-bd47e8f.jar!/org/eclipse/persistence/jpa/eclipselink_orm_2_5.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_oxm_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_oxm_2_0.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_oxm_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_oxm_2_1.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_oxm_2_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_oxm_2_2.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_oxm_2_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_oxm_2_3.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_oxm_2_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_oxm_2_4.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_oxm_2_5.xsd" uri="platform:/plugin/org.eclipse.persistence.moxy/org/eclipse/persistence/jaxb/eclipselink_oxm_2_5.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_persistence_map_1.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.persistence.core_2.7.1.v20171221-bd47e8f.jar!/org/eclipse/persistence/eclipselink_persistence_map_1.0.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_persistence_map_1.1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_persistence_map_1.1.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_persistence_map_1.2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_persistence_map_1.2.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_persistence_map_2.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_persistence_map_2.0.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_persistence_map_2.3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.persistence.core_2.7.1.v20171221-bd47e8f.jar!/org/eclipse/persistence/eclipselink_persistence_map_2.3.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_sessions_1.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_sessions_1.0.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_sessions_1.1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_sessions_1.1.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_sessions_1.2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_sessions_1.2.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_sessions_2.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jpt.common.eclipselink.core_1.3.201.v201803012210.jar!/schemas/eclipselink_sessions_2.0.xsd"/>
<uri name="http://www.eclipse.org/eclipselink/xsds/eclipselink_sessions_2.1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.persistence.core_2.7.1.v20171221-bd47e8f.jar!/org/eclipse/persistence/eclipselink_sessions_2.1.xsd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.jsf.facelet.core_1.4.2.v201803271721.jar!/dtd/facelet-taglib_1_0.dtd" webURL="facelet-taglib_1_0.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_1_2.dtd" webURL="http://java.sun.com/j2ee/dtds/application_1_2.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_1_3.dtd" webURL="http://java.sun.com/dtd/application_1_3.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD J2EE Application Client 1.2//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_1_2.dtd" webURL="http://java.sun.com/j2ee/dtds/application-client_1_2.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD J2EE Application Client 1.3//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_1_3.dtd" webURL="http://java.sun.com/dtd/application-client_1_3.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD Connector 1.0//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/connector_1_0.dtd" webURL="http://java.sun.com/dtd/connector_1_0.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/ejb-jar_1_1.dtd" webURL="http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/ejb-jar_2_0.dtd" webURL="http://java.sun.com/dtd/ejb-jar_2_0.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_2_2.dtd" webURL="http://java.sun.com/j2ee/dtds/web-app_2.2.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_2_3.dtd" webURL="http://java.sun.com/dtd/web-app_2_3.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/facelet-taglib_1_0.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesconfig_1_0.dtd" webURL="http://java.sun.com/dtd/web-facesconfig_1_0.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesconfig_1_1.dtd" webURL="http://java.sun.com/dtd/web-facesconfig_1_1.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-jsptaglibrary_1_1.dtd" webURL="http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd"/>
<public publicId="-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-jsptaglibrary_1_2.dtd" webURL="http://java.sun.com/dtd/web-jsptaglibrary_1_2.dtd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/application_1_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_1_4.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/application_1_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_1_4.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/application_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_5.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/application_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_5.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/application_6.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_6.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/application_6.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_6.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/application_7.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_7.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/application_8.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application_8.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/application-client_1_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_1_4.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/application-client_1_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_1_4.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/application-client_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_5.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/application-client_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_5.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/application-client_6.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_6.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/application-client_6.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_6.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/application-client_7.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_7.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/application-client_8.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/application-client_8.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/batchXML_1_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/batchXML_1_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/jobXML_1_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/jobXML_1_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/beans_1_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/beans_1_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/beans_1_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/beans_1_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/beans_1_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/beans_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/beans_2_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/jaxb/bindingschema_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/bindingschema_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/jaxb/bindingschema_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/bindingschema_2_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/connector_1_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/connector_1_5.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/connector_1_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/connector_1_5.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/connector_1_6.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/connector_1_6.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/connector_1_6.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/connector_1_6.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/connector_1_7.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/connector_1_7.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/ejb-jar_2_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/ejb-jar_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/ejb-jar_2_1.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/ejb-jar_3_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/ejb-jar_3_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/ejb-jar_3_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/ejb-jar_3_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/ejb-jar_3_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/ejb-jar_3_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/ejb-jar_3_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/ejb-jar_3_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/ejb-jar_3_2.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_1_4.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/j2ee_1_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_1_4.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/j2ee_1_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_1_4.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/javaee_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_5.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_5.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/javaee_6.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_6.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_6.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_6.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_7.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_7.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_8.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_8.xsd"/>
<uri name="http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_jaxrpc_mapping_1_1.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/j2ee_jaxrpc_mapping_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_jaxrpc_mapping_1_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/j2ee_jaxrpc_mapping_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_jaxrpc_mapping_1_1.xsd"/>
<uri name="http://www.ibm.com/webservices/xsd/j2ee_web_services_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_web_services_1_1.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/j2ee_web_services_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_web_services_1_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/j2ee_web_services_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_web_services_1_1.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/javaee_web_services_1_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_1_2.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_1_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_1_2.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/javaee_web_services_1_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_1_3.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_1_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_1_3.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_1_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_1_4.xsd"/>
<uri name="http://www.ibm.com/webservices/xsd/j2ee_web_services_client_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_web_services_client_1_1.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/j2ee_web_services_client_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_web_services_client_1_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/j2ee_web_services_client_1_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/j2ee_web_services_client_1_1.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/javaee_web_services_client_1_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_client_1_2.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_client_1_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_client_1_2.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/javaee_web_services_client_1_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_client_1_3.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_client_1_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_client_1_3.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/javaee_web_services_client_1_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/javaee_web_services_client_1_4.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/jsp_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/jsp_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/jsp_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/jsp_2_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/jsp_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/jsp_2_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/jsp_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/jsp_2_1.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/jsp_2_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/jsp_2_2.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/jsp_2_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/jsp_2_2.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/jsp_2_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/jsp_2_3.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/permissions_7.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/permissions_7.xsd"/>
<uri name="http://java.sun.com/xml/ns/persistence/orm_1_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/orm_1_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/persistence/orm_1_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/orm_1_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/persistence/orm_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/orm_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/persistence/orm_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/orm_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/persistence/orm_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/orm_2_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/persistence/orm_2_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/orm_2_2.xsd"/>
<uri name="http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/persistence_1_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/persistence/persistence_1_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/persistence_1_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/persistence_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/persistence/persistence_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/persistence_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/persistence_2_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/persistence/persistence_2_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/persistence_2_2.xsd"/>
<uri name="http://www.jboss.org/xml/ns/javax/validation/configuration/validation-configuration-1.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/validation-configuration-1.0.xsd"/>
<uri name="http://www.jboss.org/xml/ns/javax/validation/configuration/validation-configuration-1.1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/validation-configuration-1.1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/validation/configuration/validation-configuration-2.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/validation-configuration-2.0.xsd"/>
<uri name="http://www.jboss.org/xml/ns/javax/validation/mapping/validation-mapping-1.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/validation-mapping-1.0.xsd"/>
<uri name="http://www.jboss.org/xml/ns/javax/validation/mapping/validation-mapping-1.1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/validation-mapping-1.1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/validation/mapping/validation-mapping-2.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/validation-mapping-2.0.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_2_4.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/web-app_2_4.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_2_4.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_2_5.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-app_2_5.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_2_5.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_3_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-app_3_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_3_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_3_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-app_4_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-common_3_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-common_3_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-common_3_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-common_3_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-common_3_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-common_3_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-common_4_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-common_4_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-facelettaglibrary_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facelettaglibrary_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-facelettaglibrary_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facelettaglibrary_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-facelettaglibrary_2_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facelettaglibrary_2_2.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-facelettaglibrary_2_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facelettaglibrary_2_3.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesconfig_1_2.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_1_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesconfig_1_2.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesconfig_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesconfig_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesconfig_2_2.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesconfig_2_3.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-facesuicomponent_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesuicomponent_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-facesuicomponent_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-facesuicomponent_2_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-fragment_3_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-fragment_3_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-fragment_3_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-fragment_3_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-fragment_3_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-fragment_3_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-fragment_4_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-fragment_4_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-jsptaglibrary_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-jsptaglibrary_2_0.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-jsptaglibrary_2_1.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-jsptaglibrary_2_1.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-jsptaglibrary_2_1.xsd"/>
<uri name="http://java.sun.com/xml/ns/javaee/web-partialresponse_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-partialresponse_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-partialresponse_2_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-partialresponse_2_0.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-partialresponse_2_2.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-partialresponse_2_2.xsd"/>
<uri name="http://xmlns.jcp.org/xml/ns/javaee/web-partialresponse_2_3.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.jst.standard.schemas_1.2.300.v201810311851.jar!/dtdsAndSchemas/web-partialresponse_2_3.xsd"/>
<system systemId="http://maven.apache.org/maven-v4_0_0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.m2e.model.edit_1.10.0.20181127-2120.jar!/xsd/maven-v4_0_0.xsd"/>
<system systemId="http://maven.apache.org/xsd/maven-4.0.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.m2e.model.edit_1.10.0.20181127-2120.jar!/xsd/maven-v4_0_0.xsd"/>
<system systemId="http://maven.apache.org/xsd/settings-1.0.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.m2e.model.edit_1.10.0.20181127-2120.jar!/xsd/settings-v1_0_0.xsd"/>
<system systemId="http://maven.apache.org/xsd/profiles-1.0.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.m2e.model.edit_1.10.0.20181127-2120.jar!/xsd/profiles-v1_0_0.xsd"/>
<system systemId="http://maven.apache.org/xsd/archetype-1.0.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.m2e.model.edit_1.10.0.20181127-2120.jar!/xsd/archetype-1.0.0.xsd"/>
<system systemId="http://maven.apache.org/xsd/archetype-catalog-1.0.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.m2e.model.edit_1.10.0.20181127-2120.jar!/xsd/archetype-catalog-1.0.0.xsd"/>
<system systemId="http://maven.apache.org/xsd/archetype-descriptor-1.0.0.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.m2e.model.edit_1.10.0.20181127-2120.jar!/xsd/archetype-descriptor-1.0.0.xsd"/>
<public publicId="-//WAPFORUM//DTD WML 1.1//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/wml11.dtd"/>
<public publicId="-//W3C//DTD XHTML 1.0 Strict//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/xhtml1-strict.dtd" webURL="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"/>
<public publicId="-//W3C//DTD XHTML 1.0 Transitional//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/xhtml1-transitional.dtd" webURL="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
<public publicId="-//W3C//DTD XHTML 1.0 Frameset//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/xhtml1-frameset.dtd" webURL="http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"/>
<public publicId="-//W3C//DTD XHTML Basic 1.0//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/xhtml-basic10-f.dtd" webURL="http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd"/>
<public publicId="-//W3C//DTD XHTML 1.1//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/xhtml11-flat.dtd" webURL="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"/>
<public publicId="-//WAPFORUM//DTD XHTML Mobile 1.0//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/xhtml-mobile10-flat.dtd" webURL="http://www.wapforum.org/DTD/xhtml-mobile10.dtd"/>
<public publicId="-//WAPFORUM//DTD WML 1.3//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/wml13.dtd" webURL="http://www.wapforum.org/DTD/wml13.dtd"/>
<public publicId="-//W3C//DTD HTML 4.01 Frameset//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/frameset.dtd" webURL="http://www.w3.org/TR/html4/frameset.dtd"/>
<public publicId="-//W3C//ENTITIES Latin 1//EN//HTML" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/HTMLlat1.ent" webURL="HTMLlat1.ent"/>
<public publicId="-//W3C//ENTITIES Special//EN//HTM" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/HTMLspecial.ent" webURL="HTMLspecial.ent"/>
<public publicId="-//W3C//ENTITIES Symbols//EN//HTML" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/HTMLsymbol.ent" webURL="HTMLsymbol.ent"/>
<public publicId="-//W3C//DTD HTML 4.01 Transitional//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/loose.dtd" webURL="http://www.w3.org/TR/html4/loose.dtd"/>
<public publicId="-//W3C//DTD HTML 4.01//EN" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/strict.dtd" webURL="http://www.w3.org/TR/html4/strict.dtd"/>
<uri name="http://schemas.xmlsoap.org/wsdl/" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/wsdl.xsd"/>
<uri name="http://schemas.xmlsoap.org/wsdl/soap/" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/soap.xsd"/>
<uri name="http://schemas.xmlsoap.org/wsdl/http/" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/http.xsd"/>
<uri name="http://schemas.xmlsoap.org/wsdl/mime/" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/wsdl-mime.xsd"/>
<uri name="http://schemas.xmlsoap.org/soap/encoding/" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/soapenc.xsd"/>
<uri name="http://schemas.xmlsoap.org/soap/envelope/" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/soapenv.xsd"/>
<uri name="urn:oasis:names:tc:entity:xmlns:xml:catalog" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/xmlcatalog11.xsd"/>
<uri name="http://www.w3.org/TR/html4/loose.dtd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/loose.dtd"/>
<uri name="http://www.w3.org/TR/html4/strict.dtd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/dtds/strict.dtd"/>
<uri name="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/ws-securitypolicy-1.2.xsd"/>
<uri name="http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200802" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/ws-securitypolicy.xsd"/>
<uri name="http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.standard.schemas_1.0.800.v201711201732.jar!/xsd/xmldsig-core-schema.xsd"/>
<system systemId="http://www.w3.org/2001/xml.xsd" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.xsd_2.16.0.v20181127-0852.jar!/cache/www.w3.org/2001/xml.xsd"/>
<uri name="http://www.w3.org/2001/XMLSchema" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.xsd_2.16.0.v20181127-0852.jar!/cache/www.w3.org/2001/XMLSchema.xsd"/>
<uri id="org.w3c.xinclude" name="http://www.w3.org/2001/XInclude" uri="jar:file:/C:/Users/Labs-DCCO/eclipse/jee-2018-12/eclipse/../../../.p2/pool/plugins/org.eclipse.wst.xsl.core_1.2.0.v201802171654.jar!/xslt-schemas/xinclude.xsd"/>
<public publicId="-//LOG4J//DTD LOG4J//EN" uri="jar:file:/C:/Users/Labs-DCCO/.p2/pool/plugins/org.springsource.ide.eclipse.commons.ui_3.9.8.201901181507-CI-B428.jar!/dtd/log4j-1.2.dtd" webURL="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/xml/doc-files/log4j.dtd"/>
<public publicId="-//APACHE//DTD LOG4J 1.2//EN" uri="jar:file:/C:/Users/Labs-DCCO/.p2/pool/plugins/org.springsource.ide.eclipse.commons.ui_3.9.8.201901181507-CI-B428.jar!/dtd/log4j-1.2.dtd" webURL="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/xml/doc-files/log4j.dtd"/>
</catalog>
#Thu Feb 21 10:48:56 COT 2019
org.eclipse.core.runtime=2
org.eclipse.platform=4.10.0.v20181206-0815
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment