code stringlengths 3 1.18M | language stringclasses 1
value |
|---|---|
package Lesson3;
public class Binnary {
public static int bin(int A[],int b, int find)
{
int l=0;
int r=A.length - 1;
while (l <= r) {
int s= l+(r-l)/2;
if(A[s] > find)
r = s-1;
else {
if (find > A[s])
l = s+1;
else
return s;
}
}
return -1;
}
}
| Java |
package Krestik;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class TicTacToeGUI extends JFrame {
/**
*
*/
private static final long serialVersionUID = 1L;
private static final String TITLE = "Tic Tac Toe";
private static final int WIDTH = 450;
private static final i... | Java |
package fgd;
public class SpisokTest {
public static void main(String[] args)
{
Spisok s= new Spisok();
Spisok sp= new Spisok();
int []mas = new int[10];
for( int i=0; i<mas.length;i++)
{
mas[i] = (int)Math.round(Math.random()*(-10));
s.add(new Element(mas[i]));
s.add_end(new E... | Java |
package fgd;
public class Spisok {
Element head = null;
public void add(Element elem){
if(head == null)
{
head = elem;
}
else{
Element current = head;
while (current.next != null)
{
current = current.next;
}
current.next = elem;
}
}
public void add_begin(E... | Java |
package fgd;
public class Element
{
public int i;
public Element next = null;
public Element(int i){
this.i=i;
}
}
| Java |
package Stack;
public class spisok {
public element head = null;
public void push(element elem){
if(head == null){
head = elem;
}
else{
elem.next = head;
head = elem;
}
}
public void pop()
{
if (head!=null)
{
Sy... | Java |
package binaryTree;
public class Node
{
public Node left;
public Node right;
public Node parent;
public int key;
public char value;
Node(int K, char V)
{
key=K;
value=V;
}
}
| Java |
package map;
public class spisok {
public element head = null;
public void add_end(element elem){
if(head == null){
head = elem;
}
else {
element cur = head;
while(cur.next != null){
cur = cur.next;
}
cur.next = elem;
}
}
public String toString(){
St... | Java |
import java.util.*;
public class Heapsort {
// private int[] arr;
// private int length;
//
//public void buildHeap()
// { while(length!=0)
// {
// for(int i = (length - 1)/2; i>=0; i--)
// {
// maxHeap(i);
// }
// exchange(0,length-1);
// length--;
// }
// }
// private void max... | Java |
public class quicksort {
//public static void swap(int a,int b){
//int tmp= a;
//a = b;
//b = tmp;
//}
public static void QuickSort(int A[], int p,int r){
int i; int j; int x;
i=p;
j=r;
x=A[(i+j)/2];
do
{
while(A[i]<x) i++;
while(A[j]>x) j--;
if(i<=j)
{
int tmp... | Java |
public class spisok {
public element head = null;
public void del_beg(element elem){
if(head == null){
head = elem;
}
else {
head=null;
elem=null;
}
}
public void del_end(element elem){
if(head == null){
head = elem;
}
else {
element cur = hea... | Java |
import java.util.*;
public class Heapsort {
// private int[] arr;
// private int length;
//
//public void buildHeap()
// { while(length!=0)
// {
// for(int i = (length - 1)/2; i>=0; i--)
// {
// maxHeap(i);
// }
// exchange(0,length-1);
// length--;
// }
// }
// private void max... | Java |
package dvysvyzny_List;
public class spisok {
public element head = new element();
public void add_end(element elem){
if(head.next == head){
head.next=elem;
head.prev=elem;
elem.next=head;
elem.prev=head;
}else{
element cur = head;
while(cur.next!=head){
cur = c... | Java |
package graph;
import java.util.*;
public class main {
public static void main(String[] args)
{
function n=new function();
element[] arr = null;
int r = 5;
element [] mas=new element[5];
n.add(mas ,new element(1), null);
n.add(mas ,new element(2), new element (4));
n.add(mas ,new elemen... | Java |
public class binnarysearch {
public static int binarySearch(int[] a, int key) {
int lo = 0;
int hi = a.length-1;
while (lo <= hi) {
int mid = lo + (hi - lo) / 2;
if (key < a[mid])
hi = mid - 1;
else {
if (key > a[mid])
... | Java |
public class ARR {
public static void Ar(){
int [][] arr = new int[5][5];
for (int i = 0; i < 5; i++)
for (int j=0; j < 5; j++)
arr[i][j] = 0;
for (int i=0; i<5; i++) {
for (int j=0; j<5; j++) {
System.out.print(arr[i][j] + " ");
}
System.out.println();
}
}}
| Java |
import java.util.*;
public class slojenie {
static int length=5;
static int len=length;
public static void sloj(){
int [] arr1 = new int [length];
int [] arr2 = new int [length];
int [] arr3= new int [length + 1];
for(int i=length-1; i>=0; i--){
arr1[i] = (int) (Math.random()*10);
arr... | Java |
import java.util.*;
public class slojenie {
static int length=10;
static int len=length;
public static void sloj(){
int [] arr1= new int [length];
int [] arr2 = new int [length];
int [] arr3 = new int [length+1];
for(int i=length; i>0; i--){
arr1[length-1] = (int)(Math.random()*9);
... | Java |
package graph;
import java.util.*;
public class main {
public static void main(String[] args)
{
function n=new function();
element[] arr = null;
int r = 5;
element [] mas=new element[5];
n.add(mas ,new element(1), null);
n.add(mas ,new element(2), new element (4));
n.add(mas ,new elemen... | Java |
import java.util.Random;
public class QuickSort {
public static int ARRAY_LENGTH = 30;
private static int[] array = new int[ARRAY_LENGTH];
private static Random generator = new Random();
public static void initArray() {
for (int i=0; i<ARRAY_LENGTH; i++) {
array[i] = ge... | Java |
package BiTree;
public class elementtree {
public elementtree right;
public elementtree left;
public int key;
public String value;
elementtree(String Value)
{
this.value=Value;
//this.key=Key;
this.key=ConvertToInt32(Value);
}
elementtree(int Value)
{
String buf="";
//this.valu... | Java |
package algorithm;
import java.util.ArrayList;
import java.util.Collections;
public class merge_sort_arraylist {
public static int num = 19;
public static ArrayList<Integer> list = new ArrayList<Integer> (num);
public static void main(String[] args)
{
for (int i = 0; i < num; i++)
... | Java |
package Sum_large_num;
import java.util.Random;
public class main {
public static void main(String[] args) {
int num = 6;
int[] array_1=new int[num];
int[] array_2=new int[num];
int[] array_3=new int[num];
Random random = new Random();
for(int i=0;i<num;i++)
{
array_1[i]=... | Java |
package Horse;
import java.util.Scanner;
public class scan_something {
public static String scanstr(String str)
{
Scanner sc;
sc= new Scanner(System.in);
str=sc.next();
return str;
}
public static int scanint()
{
Scanner sc;
sc= new Scanner(System.in);
int a=sc.nextInt();
ret... | Java |
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JSeparator;
import javax.swing.JTextField;
import javax.swing.WindowConstants;
/**
* This code was edited or ge... | Java |
public enum EstadoEstudiante {
Aprobado, Reprobado, NoAsignado
}
| Java |
public interface EvaluadorEstudiante {
public void evaluarEstudiante(Estudiante e);
}
| Java |
import java.util.*;
import java.io.*;
public class Seccion implements Serializable {
static final long serialVersionUID = 2034476302601696839L;
private TreeMap<String, Estudiante> estudiantes = new TreeMap<String, Estudiante>();
private Profesor profesor = null;
private String numero;
private boolean e... | Java |
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JSeparator;
import javax.swing.JTextField;
import javax.swing.WindowConstants;
/**
* This code was edited or gen... | Java |
public interface PresentadorEvaluaciones {
public void presentarEvaluaciones();
}
| Java |
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JSeparator;
import javax.swing.JTextField;
import javax.swing.WindowConstants;
/**
* This code was edited or gene... | Java |
public class Profesor extends Persona implements EvaluadorEstudiante {
static final long serialVersionUID = -1838816915858461L;
private String titulo;
public Profesor(String cedula, String nombre, String apellido, String titulo) {
super(cedula, nombre, apellido);
this.titulo = titulo;
}
public St... | Java |
import java.io.Serializable;
public class Persona implements Serializable {
static final long serialVersionUID = 2633438392859658290L;
private String cedula, nombre, apellido;
public Persona(String cedula, String nombre, String apellido) {
super();
this.cedula = cedula;
this.nombre = nombre;
... | Java |
public class Estudiante extends Persona implements PresentadorEvaluaciones {
static final long serialVersionUID = -7855765101016696913L;
private double nota1, nota2, nota3, notaFinal;
EstadoEstudiante estado;
public Estudiante(String cedula, String nombre, String apellido) {
super(cedula, nombre, ape... | Java |
/*------------------------------------------------------------------------------
** Ident: Innovation en Inspiration > Google Android
** Author: rene
** Copyright: (c) Jan 22, 2009 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** ... | Java |
/*------------------------------------------------------------------------------
** Ident: Innovation en Inspiration > Google Android
** Author: rene
** Copyright: (c) Jan 22, 2009 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
... | Java |
/*------------------------------------------------------------------------------
** Ident: Innovation en Inspiration > Google Android
** Author: rene
** Copyright: (c) Jan 22, 2009 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
**... | Java |
/*------------------------------------------------------------------------------
** Ident: Innovation en Inspiration > Google Android
** Author: rene
** Copyright: (c) Jan 22, 2009 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
**... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Jul 9, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Jul 9, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Jul 9, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Jul 9, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
package nl.sogeti.android.gpstracker.actions.utils;
public interface StatisticsDelegate
{
void finishedCalculations(StatisticsCalulator calculated);
} | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) May 29, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Mar 10, 2012 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti N... | Java |
/*
* Copyright (C) 2009 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by app... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*
* Written by Tom van Braeckel @ http://code.google.com/u/tomvanbraeckel/
*
* This file is part of OpenGPSTracker.
*
* OpenGPSTracker is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either ... | Java |
/* Copyright (c) 2008 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Feb 26, 2012 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Feb 26, 2012 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
package nl.sogeti.android.gpstracker.viewer.map;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Point;
import android.os.Handler;
import android.util.Log;
import android.view.MotionEve... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Feb 26, 2012 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Mar 3, 2012 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
package nl.sogeti.android.gpstracker.viewer.map;
import java.util.LinkedList;
import java.util.List;
import android.graphics.Canvas;
import android.os.Handler;
import android.util.Log;
import com.google.android.maps.GeoPoint;
public class BitmapSegmentsOverlay extends AsyncOverlay
{
private static final String T... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Feb 26, 2012 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*
* Written by Pieter @ android-developers on groups.google.com
*
* This file is part of OpenGPSTracker.
*
* OpenGPSTracker is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 ... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti N... | Java |
/*------------------------------------------------------------------------------
** Ident: Delivery Center Java
** Author: rene
** Copyright: (c) Feb 25, 2012 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederland B.V. ... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti N... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti N... | Java |
/*------------------------------------------------------------------------------
** Ident: Sogeti Smart Mobile Solutions
** Author: rene
** Copyright: (c) Apr 24, 2011 Sogeti Nederland B.V. All Rights Reserved.
**------------------------------------------------------------------------------
** Sogeti Nederl... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.