This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Method Only | |
@SuppressWarnings("rawtypes") | |
@RequestMapping(value = "/cityGridView", method = RequestMethod.GET) | |
public @ResponseBody | |
Object[] showLineChart(Map<String, Object> map, HttpServletRequest request, | |
HttpServletResponse response) { | |
List<MapTable> list = contactService.fin(); | |
Object[] rows = new Object[list.size()]; | |
int i = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Iterator; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.Scanner; | |
public class LinkedListDemo { | |
public static void main(String[] args) { | |
System.out.println("Primes : "); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Iterator; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.Scanner; | |
public class LinkedListDemo { | |
public static void main(String[] args) { | |
System.out.println("Primes : "); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Iterator; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.Scanner; | |
public class LinkedListDemo { | |
public static void main(String[] args) { | |
System.out.println("Primes : "); | |
Scanner console = new Scanner(System.in); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Iterator; | |
import java.util.LinkedList; | |
import java.util.List; | |
import java.util.Scanner; | |
public class LinkedListDemo { | |
public static void main(String[] args) { | |
System.out.println("Primes : "); | |
Scanner console = new Scanner(System.in); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from openerp.osv import fields, osv | |
import random | |
class bpl_officer_registration(osv.osv): | |
_name = "bpl.officer" | |
_description = "Officer registration details" | |
_columns = { | |
'bpl_company_id':fields.many2one('bpl.company.n.registration', 'Company', help='Company'), | |
'bpl_estate_id':fields.many2one('bpl.estate.n.registration', 'Estate', help='Estate'), | |
'nic_no': fields.char('NIC No', size=32, help='NIC No'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from openerp.osv import fields, osv | |
import random | |
class bpl_officer_registration(osv.osv): | |
_name = "bpl.officer" | |
_description = "Officer registration details" | |
_columns = { | |
'bpl_company_id':fields.many2one('bpl.company.n.registration', 'Company', help='Company'), | |
'bpl_estate_id':fields.many2one('bpl.estate.n.registration', 'Estate', help='Estate'), | |
'nic_no': fields.char('NIC No', size=32, help='NIC No'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from openerp.osv import fields, osv | |
import random | |
class bpl_officer_registration(osv.osv): | |
_name = "bpl.officer" | |
_description = "Officer registration details" | |
_columns = { | |
'bpl_company_id':fields.many2one('bpl.company.n.registration', 'Company', help='Company'), | |
'bpl_estate_id':fields.many2one('bpl.estate.n.registration', 'Estate', help='Estate'), | |
'nic_no': fields.char('NIC No', size=32, help='NIC No'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from openerp.osv import fields, osv | |
import random | |
class bpl_officer_registration(osv.osv): | |
_name = "bpl.officer" | |
_description = "Officer registration details" | |
_columns = { | |
'bpl_company_id':fields.many2one('bpl.company.n.registration', 'Company', help='Company'), | |
'bpl_estate_id':fields.many2one('bpl.estate.n.registration', 'Estate', help='Estate'), | |
'nic_no': fields.char('NIC No', size=32, help='NIC No'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class TestMain { | |
public static void main(String[] args) { | |
boolean bl=true; | |
byte b=10; | |
short s=54; | |
int i=150; | |
long l=125L; | |
float f=32.5f; | |
double d=99.45; |
OlderNewer