July 2016
Intermediate to advanced
490 pages
10h 54m
English
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
All Java codes, and some XML configurations are written in this style:
package org.packt.edms.portal.model.form;
import java.util.List;
import org.springframework.web.multipart.MultipartFile;
public class MultipleFilesUploadForm {
private List<MultipartFile> files;
public List<MultipartFile> getFiles() {
return files;
}
public void setFiles(List<MultipartFile> files) {
this.files = files;
}
}The JavaScript codes of the book are written in this style:
<script type="text/javascript"> define(["dojo/request/xhr","dojo/dom","dojo/on","dojo/domReady!"], ...
Read now
Unlock full access