code
stringlengths
3
1.18M
language
stringclasses
1 value
package com.vnaloha.common.service; import java.util.List; import com.vnaloha.common.model.CartItem; import com.vnaloha.common.model.Orders; public interface OrdersService { public Orders get(int id); public boolean save(List<CartItem> cartItems, int customerId, String note, Float total); public Lis...
Java
package com.vnaloha.common.service; import java.util.List; import com.vnaloha.common.model.Manufacturer; public interface ManufacturerService { List<Manufacturer> list(); Manufacturer get(int id); }
Java
package com.vnaloha.common.service; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.vnaloha.common.dao.UserDAO; import com.vnaloha.common.model.User; import...
Java
package com.vnaloha.common.service; import java.util.List; import javax.servlet.http.HttpServletRequest; import org.springframework.web.multipart.MultipartFile; import com.vnaloha.common.model.Gallery; import com.vnaloha.common.model.Paging; public interface GalleryService { /** * Save gallery to database and...
Java
package com.vnaloha.common.service; public interface OrdersDetailService { }
Java
package com.vnaloha.common.service; public class OrdersDetailServiceImpl { }
Java
package com.vnaloha.common.service; import java.util.List; import com.vnaloha.common.model.Customer; public interface CustomerService { public Customer get(int id); public boolean save(Customer customer); public List<Customer> list(); public List<Customer> list(int start, int max); public ...
Java
package com.vnaloha.common.service; public interface UserDetailsService extends org.springframework.security.core.userdetails.UserDetailsService{ }
Java
package com.vnaloha.common.service; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.vnaloha.com...
Java
package com.vnaloha.common.service; import java.util.List; import com.vnaloha.common.model.Category; public interface CategoryService { List<Category> list(); Category get(int id); }
Java
package com.vnaloha.common.service; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UsernameNotFoundException; import org.springframework.stereotype.Service; import com.vnaloha.common....
Java
package com.vnaloha.common.service; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import com.vnaloha.common.dao.CategoryDAO; import com.vnaloha.common.model.Category; @Service public class CategoryServiceImpl implement...
Java
package com.vnaloha.common.service; import java.util.List; import com.vnaloha.common.model.Document; public interface DocumentService { /** * Save document to database * @param document */ public void save(Document document); /** * Get all document * @return a list {@link Document} */ public List...
Java
package com.vnaloha.common.dao; import java.util.List; import com.vnaloha.common.model.Customer; public interface CustomerDAO { public Customer get(int id); public boolean save(Customer customer); public List<Customer> list(); public List<Customer> list(int start, int max); public boolean ...
Java
package com.vnaloha.common.dao; import java.util.List; import com.vnaloha.common.model.Manufacturer; public interface ManufacturerDAO { List<Manufacturer> list(); Manufacturer get(int id); }
Java
package com.vnaloha.common.dao; import java.util.List; import com.vnaloha.common.model.Document; public interface DocumentDAO { /** * Save document * @param document */ public void save(Document document); /** * Get list Document * @return a list {@link Document} */ public List<Document> list(); ...
Java
package com.vnaloha.common.dao; import java.util.List; import org.hibernate.HibernateException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Repository; import com.vnaloha.common.model.Gallery; import com.vnaloha.util.CustomHibernateDaoSupport; @Repository public cl...
Java
package com.vnaloha.common.dao; import java.util.Collection; import java.util.List; import org.hibernate.HibernateException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Repository; import com.vnaloha.common.model.User; import com.vnaloha.util.CustomHibernateDaoSuppo...
Java
package com.vnaloha.common.dao; import java.util.List; import org.springframework.stereotype.Repository; import com.vnaloha.common.model.Customer; import com.vnaloha.util.CustomHibernateDaoSupport; @Repository public class CustomerDAOImpl extends CustomHibernateDaoSupport implements CustomerDAO { @...
Java
package com.vnaloha.common.dao; import java.util.List; import com.vnaloha.common.model.OrdersDetail; public interface OrdersDetailDAO { public OrdersDetail get(int id); public boolean save(OrdersDetail ordersDetail); public List<OrdersDetail> list(); public List<OrdersDetail> list(int start, i...
Java
package com.vnaloha.common.dao; import java.util.List; import com.vnaloha.common.model.Gallery; public interface GalleryDAO { /** * Get gallery by id * @param id this is gallery id * @return {@link Gallery} */ public Gallery get(int id); /** * Save gallery * @param gallery this is {@link Gallery} ...
Java
package com.vnaloha.common.dao; import java.util.List; import org.hibernate.HibernateException; import org.springframework.stereotype.Repository; import com.vnaloha.common.model.Category; import com.vnaloha.util.CustomHibernateDaoSupport; @Repository public class CategoryDAOImpl extends CustomHibernateDaoS...
Java
package com.vnaloha.common.dao; import java.util.List; import com.vnaloha.common.model.User; public interface UserDAO { public void addUser(User user); public void update(User user); public List<User> listUser(); public User getById(Integer id); public void removeUser(Integer id); public User getUserByUserna...
Java
package com.vnaloha.common.dao; import java.util.List; import org.hibernate.HibernateException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Repository; import com.vnaloha.common.model.Product; import com.vnaloha.util.CustomHibernateDaoSupport; @Reposito...
Java
package com.vnaloha.common.dao; import java.util.List; import com.vnaloha.common.model.Orders; public interface OrdersDAO { public Orders get(int id); public boolean save(Orders orders); public List<Orders> list(); public List<Orders> list(int start, int max); public boolean delete(int id...
Java
package com.vnaloha.common.dao; import java.util.List; import com.vnaloha.common.model.Product; public interface ProductDAO { public Product get(int id); public boolean save(Product product); public boolean update(Product product); public List<Product> list(); public List<Product> list(in...
Java
package com.vnaloha.common.dao; import java.util.List; import org.hibernate.HibernateException; import org.springframework.stereotype.Repository; import com.vnaloha.common.model.Manufacturer; import com.vnaloha.util.CustomHibernateDaoSupport; @Repository public class ManufacturerDAOImpl extends CustomHib...
Java
package com.vnaloha.common.dao; import java.util.List; import com.vnaloha.common.model.Category; public interface CategoryDAO { List<Category> list(); Category get(int id); }
Java
package com.vnaloha.common.dao; import java.util.List; import org.hibernate.HibernateException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Repository; import com.vnaloha.common.model.Document; import com.vnaloha.util.CustomHibernateDaoSupport; @Repository public c...
Java
package com.vnaloha.common.validation; import org.springframework.validation.Errors; import org.springframework.validation.ValidationUtils; import org.springframework.validation.Validator; import com.vnaloha.common.model.Gallery; public class GalleryValidator implements Validator { @Override public boolean suppor...
Java
/* * Copyright (C) 2007 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 agree...
Java
/* * Copyright (C) 2007 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 agree...
Java
package opengl.scenes; import java.util.ArrayList; import java.util.concurrent.Semaphore; import javax.microedition.khronos.opengles.GL10; import javax.microedition.khronos.opengles.GL11; import opengl.jni.Natives.EventListener; import android.view.SurfaceHolder; /** * A generic GL Thread. Takes ca...
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...
Java
package opengl.scenes; import javax.microedition.khronos.opengles.GL10; /** * A generic renderer interface. */ public interface Renderer { /** * @return the EGL configuration specification desired by the renderer. */ int[] getConfigSpec(); /** * Surface created. * Cal...
Java
package opengl.scenes; import javax.microedition.khronos.egl.EGL10; import javax.microedition.khronos.egl.EGL11; import javax.microedition.khronos.egl.EGLConfig; import javax.microedition.khronos.egl.EGLContext; import javax.microedition.khronos.egl.EGLDisplay; import javax.microedition.khronos.egl.EGLSurface; ...
Java
package opengl.jni; public class Natives { private static EventListener listener; public static interface EventListener { void OnMessage(String text); void GLSwapBuffers(); } public static void setListener (EventListener l) { listener = l; } /** * Native Render test * @return */ public sta...
Java
package opengl.test; import opengl.scenes.GLSurfaceView; import opengl.scenes.cubes.CubeRenderer; import android.app.Activity; import android.os.Bundle; public class NativeGLActivity extends Activity { private GLSurfaceView mGLSurfaceView; { final String LIB_PATH = "/data/libgltest_jni.so"; System.out.pri...
Java
package opengl.test; import opengl.scenes.GLSurfaceView; import opengl.scenes.cubes.CubeRenderer; import android.app.Activity; import android.os.Bundle; public class JavaGLActivity extends Activity { private GLSurfaceView mGLSurfaceView; /** Called when the activity is first created. */ @Override pu...
Java
/******************************************************************************* * Copyright (c) 2006 Vladimir Silva and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is av...
Java
package wolf.audio; /******************************************************************************* * Copyright (c) 2006 Vladimir Silva and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this dis...
Java
package wolf.audio; /******************************************************************************* * Copyright (c) 2006 Vladimir Silva and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies thi...
Java
package wolf.audio; import android.content.Context; import android.media.MediaPlayer; import android.net.Uri; /******************************************************************************* * Copyright (c) 2006 Vladimir Silva and others. * All rights reserved. This program and the accompanying materials ...
Java
package wolf.util; import game.wolfsw.R; import game.wolfsw.WolfLauncher; import game.wolfsw.WolfLauncher.eNavMethod; import android.app.Activity; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.net.Uri; ...
Java
/******************************************************************************* * Copyright (c) 2006 Vladimir Silva and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is av...
Java
/******************************************************************************* * Copyright (c) 2006 Vladimir Silva and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is av...
Java
package wolf.util; import android.util.Log; /******************************************************************************* * Copyright (c) 2006 Vladimir Silva and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * ...
Java
package game.controller; import game.wolfsw.R; import android.app.Activity; import android.content.Context; import android.util.AttributeSet; import android.view.KeyEvent; import android.view.MotionEvent; import android.view.View; import android.widget.ImageButton; public class SNESController { pri...
Java
package game.controller; import android.view.KeyEvent; public interface ControllerListener { /** * Button maps to {@link KeyEvent} Android keys! * @param btnCode Android Key code: UP,DOWN,LEFT,RIGHT,X,Y,A,B,ENTER,BACK */ public void ControllerUp(int btnCode); public void ControllerDown(int btnCo...
Java
package game.wolfsw; import game.controller.ControllerListener; import game.controller.SNESController; import game.wolfsw.R; import java.io.File; import android.app.Activity; import android.graphics.Bitmap; import android.graphics.Bitmap.Config; import android.os.Bundle; import android.os.Handler; import android.uti...
Java
package doom.jni; import android.util.Log; /** * Copyright Vladimir Silva 2009 * You are not authorized to change or distribute thos code without the author's consent. * * @author Vladimir Silva * */ public class Natives { public static final String TAG = "Natives"; private static EventListener listener; ...
Java
package doom.jni; /** * Copyright Vladimir Silva 2009 * You are not authorized to change or distribute thos code without the author's consent. * * @author Vladimir Silva * */ public class ServerNatives { public static final String TAG = "ServerNatives"; private static EventListener listener; // public s...
Java
package doom.audio; import java.io.File; import java.util.HashMap; import android.content.Context; import android.net.Uri; import android.util.Log; import doom.util.DoomTools; /** * Audio manager. Caches sounds for performance * @author vsilva * */ public class AudioManager { static final Stri...
Java
package doom.audio; import android.content.Context; import android.media.MediaPlayer; import android.net.Uri; /** * AudioClip * @author Owner * */ public class AudioClip { static final String TAG = "AudioClip"; private MediaPlayer mPlayer; private String name; private boolean mPlaying =...
Java
package doom.util; import org.doom.DoomClient; import org.doom.R; import org.doom.DoomClient.eNavMethod; import android.app.Activity; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.hardware.SensorListener...
Java
/******************************************************************************* * Copyright (c) 2006 Vladimir Silva and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and i...
Java
package doom.util; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import org.doom.DoomClient; import android.app.ProgressDialog; import android.content.Context; import android.util.Log; /** * * @author Owner * */ public clas...
Java
package doom.util; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.zip.GZIPInputStream; import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; import org.doom.DoomClient; import org.doom.DoomClien...
Java
package doom.util; import android.util.Log; /** * LoadLib Helper * @author user * */ public class LibraryLoader { static final String TAG = "LibLoader"; static public void load (String name) { final String LD_PATH = System.getProperty("java.library.path"); Log.d(TAG, "Trying to load library " + name +...
Java
package org.doom; import java.io.File; import doom.audio.AudioManager; import doom.jni.Natives; import doom.util.DialogTool; import doom.util.DoomTools; import doom.util.LibraryLoader; import android.app.Activity; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; ...
Java
package ch03.game.sb; import java.util.Timer; import java.util.TimerTask; import ch03.common.AudioClip; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.util.AttributeSet; import android.widget.LinearLayout; /** * Base class for all g...
Java
package ch03.game.sb; import ch03.common.AudioClip; import ch03.common.Tools; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.Paint; import android.graphics.RectF; import android.util.AttributeSet; import android.view.KeyEvent; import a...
Java
package ch03.game.sb; import android.app.Activity; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; public class SpaceBlaster extends Activity { private View view; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); ...
Java
package ch03.common; import ch03.game.sb.R; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; import android.net.Uri; import android.widget.Toast; import android.app.AlertDialog; public class Tools { /** * Launch web browser */ sta...
Java
package ch03.common; import android.content.Context; import android.media.MediaPlayer; public class AudioClip { private MediaPlayer mPlayer; private String name; private boolean mPlaying = false; private boolean mLoop = false; public AudioClip(Context ctx, int resID) { name = ctx.getResource...
Java
/** Automatically generated file. DO NOT MODIFY */ package ch03.game.sb; public final class BuildConfig { public final static boolean DEBUG = true; }
Java
package com.java.test; public class HelloWorld { public static void main(String[] args) { System.out.println("HelloWorld"); // comment // this is next comment // this is comment 3 // this is test 4 // this is test 5 // this is test 6 } }
Java
package com.example; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.support.v4.app.FragmentManager; import android.widget.Toast; import com.example.EditNameDialog.EditNameDialogListener; public class FragmentDialogDemo extends FragmentActivity implements EditNameDialogListe...
Java
package com.example; import android.os.Bundle; import android.support.v4.app.DialogFragment; import android.view.KeyEvent; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.view.WindowManager.LayoutParams; import android.view.inputmethod.EditorInfo; import and...
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: 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
/*------------------------------------------------------------------------------ ** 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: 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
/*------------------------------------------------------------------------------ ** 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) Oct 20, 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: Delivery Center Java ** Author: rene ** Copyright: (c) May 29, 2011 Sogeti Nederland B.V. All Rights Reserved. **------------------------------------------------------------------------------ ** Sogeti Nederland B.V. ...
Java