SYMBOL INDEX (283 symbols across 22 files) FILE: src/main/java/com/xvitcoder/springmvcangularjs/beans/RailwayStation.java class RailwayStation (line 3) | public class RailwayStation { method getName (line 12) | public String getName() { method setName (line 16) | public void setName(String name) { method getTrain (line 20) | public Train getTrain() { method setTrain (line 24) | public void setTrain(Train train) { method getId (line 28) | public Long getId() { method setId (line 32) | public void setId(Long id) { FILE: src/main/java/com/xvitcoder/springmvcangularjs/beans/Train.java class Train (line 9) | public class Train { method Train (line 15) | public Train() { } method Train (line 17) | public Train(Long id, String name, Integer speed, Boolean diesel) { method getId (line 24) | public Long getId() { method setId (line 28) | public void setId(Long id) { method getName (line 32) | public String getName() { method setName (line 36) | public void setName(String name) { method getSpeed (line 40) | public Integer getSpeed() { method setSpeed (line 44) | public void setSpeed(Integer speed) { method getDiesel (line 48) | public Boolean getDiesel() { method setDiesel (line 52) | public void setDiesel(Boolean diesel) { FILE: src/main/java/com/xvitcoder/springmvcangularjs/config/AppConfig.java class AppConfig (line 8) | @Configuration FILE: src/main/java/com/xvitcoder/springmvcangularjs/config/AppInitializer.java class AppInitializer (line 15) | public class AppInitializer implements WebApplicationInitializer { method onStartup (line 17) | public void onStartup(ServletContext servletContext) throws ServletExc... FILE: src/main/java/com/xvitcoder/springmvcangularjs/config/ThymeleafConfig.java class ThymeleafConfig (line 12) | @Configuration method templateResolver (line 15) | @Bean method templateEngine (line 25) | @Bean method thymeleafViewResolver (line 32) | @Bean FILE: src/main/java/com/xvitcoder/springmvcangularjs/config/WebMvcConfig.java class WebMvcConfig (line 18) | @Configuration method configureDefaultServletHandling (line 24) | @Override method addResourceHandlers (line 29) | @Override method configureMessageConverters (line 34) | @Override FILE: src/main/java/com/xvitcoder/springmvcangularjs/controller/CarController.java class CarController (line 19) | @Controller method getCarList (line 26) | @RequestMapping("/carlist.json") method addCar (line 31) | @RequestMapping(value = "/addCar/{car}", method = RequestMethod.POST) method removeCar (line 36) | @RequestMapping(value = "/removeCar/{car}", method = RequestMethod.DEL... method removeAllCars (line 41) | @RequestMapping(value = "/removeAllCars", method = RequestMethod.DELETE) method getCarPartialPage (line 46) | @RequestMapping("/layout") FILE: src/main/java/com/xvitcoder/springmvcangularjs/controller/IndexController.java class IndexController (line 12) | @Controller method getIndexPage (line 16) | @RequestMapping FILE: src/main/java/com/xvitcoder/springmvcangularjs/controller/RailwayStationController.java class RailwayStationController (line 17) | @Controller method getRailwayStationList (line 24) | @RequestMapping("railwaystationlist.json") method addRailwayStation (line 29) | @RequestMapping(value = "/add", method = RequestMethod.POST) method updateRailwayStation (line 34) | @RequestMapping(value = "/update", method = RequestMethod.PUT) method removeRailwayStation (line 39) | @RequestMapping(value = "/remove/{id}", method = RequestMethod.DELETE) method removeAllRailwayStations (line 44) | @RequestMapping(value = "/removeAll", method = RequestMethod.DELETE) method getRailwayStationPartialPage (line 49) | @RequestMapping("/layout") FILE: src/main/java/com/xvitcoder/springmvcangularjs/controller/TrainController.java class TrainController (line 18) | @Controller method getTrainList (line 25) | @RequestMapping("trainslist.json") method addTrain (line 30) | @RequestMapping(value = "/addTrain", method = RequestMethod.POST) method updateTrain (line 35) | @RequestMapping(value = "/updateTrain", method = RequestMethod.PUT) method removeTrain (line 40) | @RequestMapping(value = "/removeTrain/{id}", method = RequestMethod.DE... method removeAllTrains (line 45) | @RequestMapping(value = "/removeAllTrains", method = RequestMethod.DEL... method getTrainPartialPage (line 50) | @RequestMapping("/layout") FILE: src/main/java/com/xvitcoder/springmvcangularjs/service/CarService.java type CarService (line 11) | public interface CarService { method getAllCars (line 12) | public List getAllCars(); method addCar (line 14) | public void addCar(String car); method deleteCar (line 16) | public void deleteCar(String car); method deleteAll (line 18) | public void deleteAll(); FILE: src/main/java/com/xvitcoder/springmvcangularjs/service/CarServiceImpl.java class CarServiceImpl (line 14) | @Service("carService") method getAllCars (line 18) | @Override method addCar (line 23) | @Override method deleteCar (line 28) | @Override method deleteAll (line 35) | @Override FILE: src/main/java/com/xvitcoder/springmvcangularjs/service/RailwayStationService.java type RailwayStationService (line 8) | public interface RailwayStationService { method getAllRailwayStations (line 10) | public List getAllRailwayStations(); method getRailwayStationById (line 12) | public RailwayStation getRailwayStationById(Long id); method addRailwayStation (line 14) | public void addRailwayStation(RailwayStation RailwayStation); method deleteRailwayStationById (line 16) | public void deleteRailwayStationById(Long id); method deleteAll (line 18) | public void deleteAll(); method updateRailwayStation (line 20) | public void updateRailwayStation(RailwayStation RailwayStation); FILE: src/main/java/com/xvitcoder/springmvcangularjs/service/RailwayStationServiceImpl.java class RailwayStationServiceImpl (line 11) | @Service("RailwayStationService") method getRailwayStationById (line 17) | public RailwayStation getRailwayStationById(Long id) { method findRailwayStationById (line 22) | private RailwayStation findRailwayStationById(Long id) { method getAllRailwayStations (line 32) | public List getAllRailwayStations() { method addRailwayStation (line 37) | public void addRailwayStation(RailwayStation railwayStation) { method deleteRailwayStationById (line 43) | public void deleteRailwayStationById(Long id) { method updateRailwayStation (line 52) | public void updateRailwayStation(RailwayStation railwayStation) { method deleteAll (line 60) | @Override FILE: src/main/java/com/xvitcoder/springmvcangularjs/service/TrainService.java type TrainService (line 13) | public interface TrainService { method getAllTrains (line 14) | public List getAllTrains(); method getTrainById (line 16) | public Train getTrainById(Long id); method addTrain (line 18) | public void addTrain(Train train); method deleteTrainById (line 20) | public void deleteTrainById(Long id); method deleteAll (line 22) | public void deleteAll(); method updateTrain (line 24) | public void updateTrain(Train train); FILE: src/main/java/com/xvitcoder/springmvcangularjs/service/TrainServiceImpl.java class TrainServiceImpl (line 15) | @Service("trainService") method getAllTrains (line 20) | @Override method getTrainById (line 25) | @Override method addTrain (line 30) | @Override method deleteTrainById (line 36) | @Override method deleteAll (line 45) | @Override method updateTrain (line 51) | @Override method findTrainById (line 60) | private Train findTrainById(Long id) { FILE: src/main/webapp/resources/bootstrap/js/bootstrap.js function transitionEnd (line 34) | function transitionEnd() { function removeElement (line 126) | function removeElement() { function Plugin (line 142) | function Plugin(option) { function Plugin (line 251) | function Plugin(option) { function Plugin (line 470) | function Plugin(option) { function getTargetFromTrigger (line 689) | function getTargetFromTrigger($trigger) { function Plugin (line 701) | function Plugin(option) { function getParent (line 768) | function getParent($this) { function clearMenus (line 781) | function clearMenus(e) { function Plugin (line 874) | function Plugin(option) { function Plugin (line 1200) | function Plugin(option, _relatedTarget) { function complete (line 1566) | function complete() { function Plugin (line 1736) | function Plugin(option) { function Plugin (line 1845) | function Plugin(option) { function ScrollSpy (line 1888) | function ScrollSpy(element, options) { function Plugin (line 2008) | function Plugin(option) { function next (line 2117) | function next() { function Plugin (line 2163) | function Plugin(option) { function Plugin (line 2320) | function Plugin(option) { FILE: src/main/webapp/resources/js/lib/angular/angular-cookies.js function push (line 61) | function push() { FILE: src/main/webapp/resources/js/lib/angular/angular-loader.js function ensure (line 19) | function ensure(obj, name, factory) { function invokeLater (line 246) | function invokeLater(provider, method, insertMethod) { FILE: src/main/webapp/resources/js/lib/angular/angular-resource.js function encodeUriSegment (line 244) | function encodeUriSegment(val) { function encodeUriQuery (line 263) | function encodeUriQuery(val, pctEncodeSpaces) { function Route (line 272) | function Route(template, defaults) { function ResourceFactory (line 315) | function ResourceFactory(url, paramDefaults, actions) { FILE: src/main/webapp/resources/js/lib/angular/angular-sanitize.js function makeMap (line 175) | function makeMap(str) { function htmlParser (line 194) | function htmlParser( html, handler ) { function decodeEntities (line 323) | function decodeEntities(value) { function encodeEntities (line 335) | function encodeEntities(value) { function htmlSanitizeWriter (line 355) | function htmlSanitizeWriter(buf){ FILE: src/main/webapp/resources/js/lib/angular/angular.js function fromCharCode (line 55) | function fromCharCode(code) {return String.fromCharCode(code);} function forEach (line 100) | function forEach(obj, iterator, context) { function sortedKeys (line 125) | function sortedKeys(obj) { function forEachSorted (line 135) | function forEachSorted(obj, iterator, context) { function reverseParams (line 149) | function reverseParams(iteratorFn) { function nextUid (line 161) | function nextUid() { function extend (line 195) | function extend(dst) { function int (line 206) | function int(str) { function inherit (line 211) | function inherit(parent, extra) { function noop (line 231) | function noop() {} function identity (line 250) | function identity($) {return $;} function valueFn (line 254) | function valueFn(value) {return function() {return value;};} function isUndefined (line 267) | function isUndefined(value){return typeof value == 'undefined';} function isDefined (line 281) | function isDefined(value){return typeof value != 'undefined';} function isObject (line 296) | function isObject(value){return value != null && typeof value == 'object';} function isString (line 310) | function isString(value){return typeof value == 'string';} function isNumber (line 324) | function isNumber(value){return typeof value == 'number';} function isDate (line 338) | function isDate(value){ function isArray (line 354) | function isArray(value) { function isFunction (line 370) | function isFunction(value){return typeof value == 'function';} function isWindow (line 380) | function isWindow(obj) { function isScope (line 385) | function isScope(obj) { function isFile (line 390) | function isFile(obj) { function isBoolean (line 395) | function isBoolean(value) { function trim (line 400) | function trim(value) { function isElement (line 415) | function isElement(node) { function makeMap (line 425) | function makeMap(str){ function map (line 446) | function map(obj, iterator, context) { function size (line 467) | function size(obj, ownPropsOnly) { function includes (line 482) | function includes(array, obj) { function indexOf (line 486) | function indexOf(array, obj) { function arrayRemove (line 495) | function arrayRemove(array, value) { function isLeafNode (line 502) | function isLeafNode (node) { function copy (line 536) | function copy(source, destination){ function shallowCopy (line 573) | function shallowCopy(src, dst) { function equals (line 610) | function equals(o1, o2) { function concat (line 646) | function concat(array1, array2, index) { function sliceArgs (line 650) | function sliceArgs(args, startIndex) { function bind (line 670) | function bind(self, fn) { function toJsonReplacer (line 691) | function toJsonReplacer(key, value) { function toJson (line 720) | function toJson(obj, pretty) { function fromJson (line 736) | function fromJson(json) { function toBoolean (line 743) | function toBoolean(value) { function startingTag (line 756) | function startingTag(element) { function parseKeyValue (line 775) | function parseKeyValue(/**string*/keyValue) { function toKeyValue (line 787) | function toKeyValue(obj) { function encodeUriSegment (line 807) | function encodeUriSegment(val) { function encodeUriQuery (line 826) | function encodeUriQuery(val, pctEncodeSpaces) { function angularInit (line 864) | function angularInit(element, bootstrap) { function bootstrap (line 920) | function bootstrap(element, modules) { function snake_case (line 940) | function snake_case(name, separator){ function bindJQuery (line 947) | function bindJQuery() { function assertArg (line 971) | function assertArg(arg, name, reason) { function assertArgFn (line 978) | function assertArgFn(arg, name, acceptArrayAnnotation) { function setupModuleLoader (line 996) | function setupModuleLoader(window) { function publishExternalAPI (line 1258) | function publishExternalAPI(angular){ function jqNextId (line 1452) | function jqNextId() { return ++jqId; } function camelCase (line 1463) | function camelCase(name) { function JQLitePatchJQueryRemove (line 1479) | function JQLitePatchJQueryRemove(name, dispatchThis) { function JQLite (line 1513) | function JQLite(element) { function JQLiteClone (line 1537) | function JQLiteClone(element) { function JQLiteDealoc (line 1541) | function JQLiteDealoc(element){ function JQLiteUnbind (line 1548) | function JQLiteUnbind(element, type, fn) { function JQLiteRemoveData (line 1569) | function JQLiteRemoveData(element) { function JQLiteExpandoStore (line 1583) | function JQLiteExpandoStore(element, key, value) { function JQLiteData (line 1598) | function JQLiteData(element, key, value) { function JQLiteHasClass (line 1624) | function JQLiteHasClass(element, selector) { function JQLiteRemoveClass (line 1629) | function JQLiteRemoveClass(element, cssClasses) { function JQLiteAddClass (line 1641) | function JQLiteAddClass(element, cssClasses) { function JQLiteAddNodes (line 1651) | function JQLiteAddNodes(root, elements) { function JQLiteController (line 1662) | function JQLiteController(element, name) { function JQLiteInheritedData (line 1666) | function JQLiteInheritedData(element, name, value) { function trigger (line 1688) | function trigger() { function getBooleanAttrName (line 1728) | function getBooleanAttrName(element, name) { function createEventHandler (line 1894) | function createEventHandler(element, events) { function hashKey (line 2133) | function hashKey(obj) { function HashMap (line 2154) | function HashMap(array){ function HashQueueMap (line 2190) | function HashQueueMap() {} function annotate (line 2272) | function annotate(fn) { function createInjector (line 2625) | function createInjector(modulesToLoad) { function $AnchorScrollProvider (line 2847) | function $AnchorScrollProvider() { function Browser (line 2921) | function Browser(window, document, $log, $sniffer) { function $BrowserProvider (line 3253) | function $BrowserProvider(){ function $CacheFactoryProvider (line 3282) | function $CacheFactoryProvider() { function $TemplateCacheProvider (line 3424) | function $TemplateCacheProvider() { function $CompileProvider (line 3580) | function $CompileProvider($provide) { function directiveNormalize (line 4511) | function directiveNormalize(name) { function nodesetLinkingFn (line 4558) | function nodesetLinkingFn( function directiveLinkingFn (line 4565) | function directiveLinkingFn( function $ControllerProvider (line 4583) | function $ControllerProvider() { function $DocumentProvider (line 4653) | function $DocumentProvider(){ function $ExceptionHandlerProvider (line 4676) | function $ExceptionHandlerProvider() { function $InterpolateProvider (line 4693) | function $InterpolateProvider() { function encodePath (line 4877) | function encodePath(path) { function stripHash (line 4888) | function stripHash(url) { function matchUrl (line 4893) | function matchUrl(url, obj) { function composeProtocolHostPort (line 4915) | function composeProtocolHostPort(protocol, host, port) { function pathPrefixFromBase (line 4920) | function pathPrefixFromBase(basePath) { function convertToHtml5Url (line 4925) | function convertToHtml5Url(url, basePath, hashPrefix) { function convertToHashbangUrl (line 4940) | function convertToHashbangUrl(url, basePath, hashPrefix) { function LocationUrl (line 4971) | function LocationUrl(url, pathPrefix, appBaseUrl) { function LocationHashbangUrl (line 5026) | function LocationHashbangUrl(url, hashPrefix, appBaseUrl) { function LocationHashbangInHtml5Url (line 5264) | function LocationHashbangInHtml5Url(url, hashPrefix, appBaseUrl, baseExt... function locationGetter (line 5277) | function locationGetter(property) { function locationGetterSetter (line 5284) | function locationGetterSetter(property, preprocess) { function $LocationProvider (line 5332) | function $LocationProvider(){ function $LogProvider (line 5515) | function $LogProvider(){ function lex (line 5630) | function lex(text, csp){ function parser (line 5864) | function parser(text, json, $filter, csp){ function setter (line 6244) | function setter(obj, path, setValue) { function getter (line 6267) | function getter(obj, path, bindFnToScope) { function cspSafeGetterFn (line 6293) | function cspSafeGetterFn(key0, key1, key2, key3, key4) { function getterFn (line 6357) | function getterFn(path, csp) { function $ParseProvider (line 6443) | function $ParseProvider() { function $QProvider (line 6585) | function $QProvider() { function qFactory (line 6603) | function qFactory(nextTick, exceptionHandler) { function $RouteProvider (line 6860) | function $RouteProvider(){ function $RouteParamsProvider (line 7325) | function $RouteParamsProvider() { function $RootScopeProvider (line 7387) | function $RootScopeProvider(){ function $SnifferProvider (line 8153) | function $SnifferProvider() { function $WindowProvider (line 8209) | function $WindowProvider(){ function parseHeaders (line 8219) | function parseHeaders(headers) { function headersGetter (line 8254) | function headersGetter(headers) { function transformData (line 8279) | function transformData(data, headers, fns) { function isSuccess (line 8291) | function isSuccess(status) { function $HttpProvider (line 8296) | function $HttpProvider() { function $HttpBackendProvider (line 9001) | function $HttpBackendProvider() { function createHttpBackend (line 9008) | function createHttpBackend($browser, XHR, $browserDefer, callbacks, rawD... function $LocaleProvider (line 9113) | function $LocaleProvider(){ function $TimeoutProvider (line 9174) | function $TimeoutProvider() { function $FilterProvider (line 9334) | function $FilterProvider($provide) { function filterFilter (line 9441) | function filterFilter() { function currencyFilter (line 9566) | function currencyFilter($locale) { function numberFilter (line 9623) | function numberFilter($locale) { function formatNumber (line 9632) | function formatNumber(number, pattern, groupSep, decimalSep, fractionSiz... function padNumber (line 9701) | function padNumber(num, digits, trim) { function dateGetter (line 9715) | function dateGetter(name, size, offset, trim) { function dateStrGetter (line 9725) | function dateStrGetter(name, shortForm) { function timeZoneGetter (line 9734) | function timeZoneGetter(date) { function ampmGetter (line 9739) | function ampmGetter(date, formats) { function dateFilter (line 9850) | function dateFilter($locale) { function jsonFilter (line 9945) | function jsonFilter() { function limitToFilter (line 10026) | function limitToFilter(){ function orderByFilter (line 10146) | function orderByFilter($parse){ function ngDirective (line 10195) | function ngDirective(directive) { function FormController (line 10588) | function FormController(element, attrs) { function isEmpty (line 11217) | function isEmpty(value) { function textInputType (line 11222) | function textInputType(scope, element, attr, ctrl, $sniffer, $browser) { function numberInputType (line 11335) | function numberInputType(scope, element, attr, ctrl, $sniffer, $browser) { function urlInputType (line 11397) | function urlInputType(scope, element, attr, ctrl, $sniffer, $browser) { function emailInputType (line 11414) | function emailInputType(scope, element, attr, ctrl, $sniffer, $browser) { function radioInputType (line 11431) | function radioInputType(scope, element, attr, ctrl) { function checkboxInputType (line 11453) | function checkboxInputType(scope, element, attr, ctrl) { function toggleValidCss (line 11758) | function toggleValidCss(isValid, validationErrorKey) { function classDirective (line 12251) | function classDirective(name, selector) { function destroyLastScope (line 13859) | function destroyLastScope() { function clearContent (line 13866) | function clearContent() { function update (line 13871) | function update() { function Single (line 14185) | function Single(scope, selectElement, ngModelCtrl, selectCtrl) { function Multiple (line 14210) | function Multiple(scope, selectElement, ctrl) { function Options (line 14241) | function Options(scope, selectElement, ctrl) {