Lombak, Getter Setter Example

Ref: https://projectlombok.org/features/GetterSetter

import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;

public class GetterSetterExample {
/**
* Age of the person. Water is wet.
*
* @param age New value for this person's age. Sky is blue.
* @return The current value of this person's age. Circles are round.
*/
@Getter @Setter private int age = 10;

/**
* Name of the person.
* -- SETTER --
* Changes the name of this person.
*
* @param name The new value.
*/
@Setter(AccessLevel.PROTECTED) private String name;

@Override public String toString() {
return String.format("%s (age: %d)", name, age);
}
}



"Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.
Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more."

Investing Wisely

https://youtu.be/dh142KyRWfc

Be a Database Professional

Be a Database Professional

https://youtu.be/Ipljzg2AjKg

https://youtu.be/Ipljzg2AjKg

Database Design in Pictures

Database Design in Pictures

https://www.youtube.com/watch?v=LpCFCkCxVSk&pp=ygUac2FsZWFybmluZ3NjaG9vbCBzaXRlc3RyZWU%3D

Watch on Youtube


Learn Some Data Flow Diagram (DFD)

Learn Some Data Flow Diagram (DFD)

https://www.youtube.com/watch?v=FROyc00v9Sw&pp=ygUac2FsZWFybmluZ3NjaG9vbCBzaXRlc3RyZWU%3D

SQL Server: Dynamic SQL, Stored Procedure, Cursor, SQL Injection, and similar

SQL Server: Dynamic SQL, Stored Procedure, Cursor, SQL Injection, and similar

https://youtu.be/uje72uNAT6I?list=PLUA7SYgJYDFoharKbJxz2Hxw6xQITXvBn

introduction to WebAPI and a demo application on Web API

https://youtu.be/6KPu7DjIEwc

Introduction to soa and apache axis

https://youtu.be/Dw6B-Zft55s

Introduction to project management using dot project 3

https://youtu.be/mofDRCbSfaU

Introduction to project management using dot project 2

https://youtu.be/f74lpJ5Y_eU