Template Design Pattern එකේ අර්ථ දැක්වීම මෙහෙමයි.The template design pattern defines the steps of an algorithm and allows sub classes to provide the implementation for one or more steps.Template pattern එකේදී සිදු කරන්නේ algorithm එකක program skelton එක define කිරීමයි.Sub classes වලට අවස්ථාව හිමිවෙනවා, මේ algorithm එකේ steps එකක් හෝ වැඩි ගණනක් override කිරීමෙන් තමන්ගේම වන implementation නිර්මාණය කර ගන්නට.මෙයින් ...
action class එකේ validate method එක ලිවිය යුතුය.ලැබිය යුතු error messages, properties file එකක ලිවිය යුතුය.The workflow interceptor controls the flow of cotrol.The workflow interceptor checks whether the action implements the Validateable interface , if it does, the workflow interceptor will invoke the validate() method of the Action class.Action class එකේ validate() method එක, invoke කරන්නේ workflow interceptor එක මඟිනි.In ...
class: a set of same type of objects a blueprint ex: class Family class Drama class Student class Button class Connection class HttpServletobjects: instances of a classattributes/variables : properties of those objectsmethods: functions/ activitiesstatic variable: common attribute to all objectsex1)public class Family { float height; String name; static String surname ="perera"; public static void main(String[] args) { Family father = ...