code stringlengths 3 1.18M | language stringclasses 1
value |
|---|---|
package insight.sm.controllers;
import java.util.ArrayList;
import java.util.Enumeration;
import javax.servlet.http.HttpServletRequest;
public class CommonFunc {
public static String analyzeRequest(HttpServletRequest request) {
//String a = "filter\\[filters\\]\\[[0-9]\\]";
String simpleFi... | Java |
package insight.sm.controllers;
import insight.sm.dao.IAssignmentsDAO;
import insight.sm.dao.IEquipmentDAO;
import insight.sm.dao.IProjectDAO;
import insight.sm.db.EntityRowMapper;
import insight.sm.delegates.AjaxDelegate;
import insight.sm.pojo.Project;
import insight.sm.pojo.Users;
import java.util.List;
... | Java |
package insight.sm.pojo;
public class LabourResources {
private int resourceId;
private String externalResourceId;
private String resourceName;
private String description;
private String resourceType;
private String resourceStatus;
public int getResourceId() {
return resourceId;
}
public void se... | Java |
package insight.sm.pojo;
public class Material {
private int materialId;
private int externalId;
private String materialName;
private String description;
private boolean inspectionRequired;
private String materialStatus;
public int getMaterialId() {
return materialId;
}
public void setMaterialId... | Java |
package insight.sm.pojo;
public class domainFields {
}
| Java |
package insight.sm.pojo;
public class userRoles {
private int id;
private String userId;
private String Role;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId =... | Java |
package insight.sm.pojo;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Table;
@Table(name="assignments_")
public class Assignments {
@Column(name="assignmentId_", insertable=false)
private int assignmentId;
@Column(name="externalId_")
private String externalId;
pr... | Java |
package insight.sm.pojo;
import insight.sm.constants.Constants.ProjectStatusConstants;
import java.util.Date;
import javax.persistence.Column;
public class Project {
@Column(name="id", insertable=false, unique=true)
private int projectId;
private int externalProjectId;
private String projectName;
... | Java |
package insight.sm.pojo;
import javax.persistence.Column;
import javax.persistence.Entity;
@Entity(name="tbl_equipment")
public class Equipment {
@Column(name="id",insertable=false, unique=true)
private int equipmentId;
private String externalId;
private String equipmentName;
private String descripti... | Java |
package insight.sm.pojo;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
@Entity(name = "TblTest")
public class TblTest {
//@Column (name = "id")
private int id;
@Column (name = "userid")
private String name;
@Column(name = "role")
private String r... | Java |
package insight.sm.pojo;
import java.util.Date;
public class MCRMaster {
private int mcrId;
private int receiptId;
private int supplierId;
private Date mcrDate;
private String mcrStatus;
private String referenceNum;
public int getMcrId() {
return mcrId;
}
public void setMcrId(int mcrId) {
... | Java |
package insight.sm.pojo;
import java.util.Date;
public class MaterialIssue {
private int issueId;
private Date issueDate;
private int materialId;
private int contractorId;
private double quantity;
private int taskId;
private int projectId;
public int getIssueId() {
return issueId;
}
public ... | Java |
package insight.sm.pojo;
public class ReceiptDetails {
private int detailId;
private int receiptId;
private double quantity;
private double amount;
private int mcrId;
private boolean inspectionRequired;
private String recDetailStatus;
public int getDetailId() {
return detailId;
}
public void s... | Java |
package insight.sm.pojo;
import java.util.Date;
public class MaterialReceipts {
private int receiptId;
private Date receivedDate;
private int supplierId;
private double totalInvoiceAmt;
private String recieptStatus;
public int getReceiptId() {
return receiptId;
}
public void setReceiptId(int re... | Java |
package insight.sm.pojo;
import insight.sm.constants.Constants;
import java.util.Date;
public class Task {
private int taskId;
private int projectId;
private String externalTaskId;
private String externalProjectId;
private String taskName;
private String description;
private Date plannedStartDate... | Java |
package insight.sm.pojo;
public class TestPojo {
private String fullname;
private boolean enabled;
public String getFullname() {
return fullname;
}
public void setFullname(String fullname) {
this.fullname = fullname;
}
public boolean isEnabled() {
return enabled;
}
public void setEnabled(b... | Java |
package insight.sm.pojo;
import java.util.List;
import org.codehaus.jackson.map.ObjectMapper;
import org.json.JSONArray;
import org.json.JSONObject;
public class GridData<T> {
private List<String> tableHeader;
private List<T> tableData;
private JSONArray array;
private JSONArray arrayData;
private ... | Java |
package insight.sm.pojo;
public class MCRDetail {
private int detailId;
private int mcrId;
private int materialId;
private String comment;
private String actionRequired;
private String detailStatus;
public int getDetailId() {
return detailId;
}
public void setDetailId(int detailId) {
this.det... | Java |
package insight.sm.pojo;
public class Users {
private String reportingAuthorityId;
private String signatureDocId;
private String defaultApp;
private String username;
private String fullName;
private String emailid;
public String getFullName() {
return fullName;
}
public void setFullName(String ful... | Java |
package insight.sm.pojo;
import java.util.Date;
public class MaterialRequirement {
private int requirementId;
private int materialId;
private Date requiredBy;
private int taskId;
private int projectId;
private String description;
private String prNumber;
private String poNumber;
private int requ... | Java |
package insight.sm.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface Column {
String name();
}
| Java |
package insight.sm.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface Table {
String name();
}
| Java |
package insight.sm.db;
import insight.sm.annotations.Column;
import insight.sm.annotations.Table;
import insight.sm.delegates.ReflectionDelegate;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Arra... | Java |
package insight.sm.db;
import insight.common.Encrypter;
import insight.common.logging.JLogger;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.springframework.jdbc.core.JdbcTemplate;
impor... | Java |
package insight.sm.db;
import java.beans.PropertyDescriptor;
import java.lang.reflect.Method;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import javax.persistence.Column;
im... | Java |
package insight.jsp.custom.taglib;
import java.io.IOException;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.TagSupport;
public class GridToolbarTagHandler extends TagSupport {
private static final long serialVersionUID = 1L;
private String id;... | Java |
package insight.jsp.custom.taglib;
import insight.sm.constants.Constants;
import insight.sm.delegates.UserDelegate;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringWriter;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.TagSuppor... | Java |
package insight.jsp.custom.taglib;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringWriter;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.TagSupport;
import org.apache.commons.io.IOUtils;
public class PageHeaderTagHandler exten... | Java |
package insight.jsp.custom.taglib;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringWriter;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.TagSupport;
import org.apache.commons.io.IOUtils;
public class LeftPanelTagHandler extends TagSupport {
private sta... | Java |
package insight.jsp.custom.taglib;
import java.io.IOException;
import java.io.InputStream;
import java.io.StringWriter;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.tagext.TagSupport;
impor... | Java |
package vcard.io;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.Pendi... | Java |
package vcard.io;
import java.io.IOException;
/**
* A Base64 Encoder/Decoder.
*
* <p>
* This class is used to encode and decode data in Base64 format as described in RFC 1521.
*
* <p>
* This is "Open Source" software and released under the <a href="http://www.gnu.org/licenses/lgpl.html">GNU/LGPL</a> license.<br>
* It... | Java |
package vcard.io;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.view.View;
import android.view.Win... | Java |
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by
* the Free Software Foundation with the addit... | Java |
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by
* the Free Software Foundation with the addit... | Java |
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by
* the Free Software Foundation with the addit... | Java |
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by
* the Free Software Foundation with the additio... | Java |
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by
* the Free Software Foundation with the addit... | Java |
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by
* the Free Software Foundation with the addit... | Java |
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by
* the Free Software Foundation with the additio... | Java |
/*
* Funambol is a mobile platform developed by Funambol, Inc.
* Copyright (C) 2003 - 2007 Funambol, Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by
* the Free Software Foundation with the addit... | Java |
package controlador;
import java.awt.AWTEvent;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.List;
import modelo.*;
import vista.VentanaProducto;
import vista.VentanaDetalleProductoTablaModel;
public class ControladorVentanaProducto implements ... | Java |
package controlador;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.List;
import modelo.DetalleOrden;
import modelo.DetalleOrdenDAO;
import vista.VentanaConsultaProducto;
import vista.VentanaTablaModeloProducto;
public class ControladorDetalleOrden/* implements ActionList... | Java |
package controlador;
import java.awt.AWTEvent;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.List;
import vista.VentanaCargaCompra;
import modelo.IngredienteDAO;
public class ControladorVentanaCompraIngredientes implements ActionListener {
pr... | Java |
package controlador;
import java.awt.AWTEvent;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import modelo.CategoriaDAO;
import modelo.Cliente;
import modelo.ClienteDAO;
import modelo.DetalleProducto;
import modelo.Ingrediente;
import modelo.IngredienteDAO;
import modelo.Producto;
import mo... | Java |
package controlador;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.List;
import modelo.Ingrediente;
import modelo.IngredienteDAO;
import modelo.ProbarMetodosFabricaCreador;
import vista.VentanaIngredienteModeloTabla;
import vista.VentanaPrincipalMagnifico;
public class Con... | Java |
package controlador;
import java.awt.event.ActionListener;
import modelo.Categoria;
import modelo.CategoriaDAO;
import modelo.ProbarMetodosFabricaCreador;
import java.awt.event.ActionEvent;
import vista.VentanaCategoria;
public class ControladorCategoria implements ActionListener {
private VentanaCategoria venta... | Java |
package controlador;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.List;
import vista.VentanaConsulta;
import vista.VentanaIngredienteModeloTabla;
import modelo.Ingrediente;
import modelo.IngredienteDAO;
public class ControladorIngrediente implements ActionListener {
... | Java |
import controlador.ControladorVentanaPrincipalMagnifico;
public class Principal {
/*
Ingregantes del Equipo #1 Seccion 01
Chaviel Jorge G. CI: 17.943.679
Saez Karol M. CI: 19.854.479
Cuauro Yurbely. CI: 19.679.478
*/
public static void main(String[] args) {
new ControladorVentanaPrincipalMagni... | Java |
package vista;
import javax.swing.table.AbstractTableModel;
import modelo.DetalleOrden;
import modelo.Producto;
import java.util.ArrayList;
import java.util.List;
public class VentanaTablaOrdenProducto extends AbstractTableModel {
private static String[] titulos = {"Codigo Producto", "Descripcion", "Preci... | Java |
package vista;
//import com.cloudgarden.layout.AnchorLayout;
//import java.awt.BorderLayout;
import java.awt.event.ActionListener;
import javax.swing.BorderFactory;
//import javax.swing.DefaultComboBoxModel;
//import javax.swing.GroupLayout;
import javax.swing.ImageIcon;
import javax.swing.JButton;
//import javax.swin... | Java |
package vista;
import java.util.ArrayList;
import java.util.List;
import javax.swing.table.AbstractTableModel;
import modelo.DetalleOrden;
public class VentanaTablaModeloProducto extends AbstractTableModel{
private static String[] titulos = {"Código Producto","Descripción","Cantidad", "Monto"};
... | Java |
//modificado..
package vista;
import java.awt.BorderLayout;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.List;
import javax.swing.BorderFactory;
import javax.swing.ComboBoxModel;
import javax.swing.DefaultComboBoxModel;
import javax.swing... | Java |
package vista;
import java.awt.event.ActionListener;
import java.util.List;
import javax.swing.BorderFactory;
import javax.swing.ComboBoxModel;
import javax.swing.DefaultComboBoxModel;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JLabel;
import javax.swing... | Java |
package vista;
import java.util.ArrayList;
import java.util.List;
import javax.swing.table.AbstractTableModel;
import modelo.Ingrediente;
public class VentanaIngredienteModeloTabla extends AbstractTableModel{
private static String[] titulos = {"Código","Descripción", "Existencia"};
private... | Java |
package vista;
import java.util.ArrayList;
import java.util.List;
import javax.swing.table.AbstractTableModel;
import modelo.DetalleProducto;
public class VentanaDetalleProductoTablaModel extends AbstractTableModel {
private static String[] titulos = {"CodIngrediente","Ingrediente","Cantidad"};
pr... | Java |
package vista;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.LinkedList;
import java.util.ListIterator;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JS... | Java |
package vista;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JFormattedTextField;
import javax.swing.JPanel;
import javax.swing.JSeparator;
impor... | Java |
package vista;
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import java.awt.event.ActionListener;
import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JEdito... | Java |
package vista;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.List;
import javax.swing.BorderFactory;
import javax.swing.ComboBoxModel;
import javax.swing.DefaultComboBoxModel;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import... | Java |
package modelo;
//Entidad que asocia a producto con ingrediente
public class DetalleProducto {
private String codProducto, codIngrediente,descripcionIng;
float cantidadIng;
//Constructor con parametros
public DetalleProducto(String codProducto, String codIngrediente, String de... | Java |
package modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
public class ProductoDAO {
public ProductoDAO() {
super();
}
public void registrarProducto(Producto producto) {
String tiraSQL ... | Java |
package modelo;
import java.sql.*;
public class Conexion {
// La descripcion del driver de la BD
private static String driver = "org.postgresql.Driver";
// La direccion URL de la BD
private static String url = "jdbc:postgresql://localhost:5432/";
// El nombre de la BD
private static ... | Java |
package modelo;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
public class OrdenDAO {
public OrdenDAO() {
super();
}
public void registrarOrden(Orden orden) {
String tiraSQL = "INSERT INTO o... | Java |
package modelo;
import java.util.Vector;
public class Orden {
private String codOrden, cedulaCli, fechaOrd;
private float totalPagar;
//Vector de Producto para permitir el manejo de la disponibilidad del producto a ordenar.
Vector <Producto> producto = new Vector <Pr... | Java |
package modelo;
import javax.swing.JOptionPane;
import vista.VentanaCategoria;
abstract class Creador {
VentanaCategoria ventanaCategoria = new VentanaCategoria();
public static Creador metodoFabrica(String tipo){
if(tipo.equals("Salir"))
return new Mensaje();
return null;
}
public String toString() {
... | Java |
package modelo;
import java.util.Vector;
public class Producto {
private String codProducto, descripcionProd, codCategoria, fechaRegistro;
private float precio;
int cantidad;
/*Vector de ingrediente para llevar el control de la cantidad y
* descripción de ingredientes que co... | Java |
package modelo;
import java.util.ArrayList;
import java.util.List;
import java.util.ListIterator;
import modelo.DetalleOrdenDAO;
//PATRON ITERATOR
public class Coleccion{
private DetalleOrdenDAO detOrdenDAO = new DetalleOrdenDAO();
List<DetalleOrden> milistamontos = new ArrayList<DetalleOrden>();
List<DetalleOrd... | Java |
package modelo;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import vista.VentanaCategoria;
public class ProbarMetodosFabricaCreador implements ActionListener{
private VentanaCategoria ventanaCategoria;
public ProbarMetodosFabricaCreador() {
super();
ventanaCategoria = new VentanaC... | Java |
package modelo;
public class Ingrediente {
private String codIngrediente, descripcionIng;
private float existencia;
//Faltaba el constructor con parametros
public Ingrediente(String codIngrediente, String descripcionIng,
float existencia) {
... | Java |
package modelo;
public class DetalleOrden {
private String codOrden, codProducto,descripcionProd;
int cantidadProd;
float monto;
public DetalleOrden() {
super();
}
public DetalleOrden(String codOrden,String codProducto,
... | Java |
/*
* Copyright (C) 2010 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 applicab... | Java |
/*
* Copyright (C) 2010 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 applicab... | Java |
/*
* Copyright (C) 2010 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 |
/*
* Copyright (C) 2010 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 applicab... | Java |
/*
* Copyright (C) 2010 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 applicab... | Java |
package org.pocketworkstation.pckeyboard;
import android.content.Context;
import android.preference.EditTextPreference;
import android.util.AttributeSet;
public class AutoSummaryEditTextPreference extends EditTextPreference {
public AutoSummaryEditTextPreference(Context context) {
super(context);
}
... | Java |
package org.pocketworkstation.pckeyboard;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.view.inputmethod.InputMethodManager;
public class NotificationReceiver extends BroadcastReceiver {
static final String TAG = "PCKe... | Java |
/*
* Copyright (C) 2010 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 |
/**
*
*/
package org.pocketworkstation.pckeyboard;
import android.content.Context;
import android.preference.ListPreference;
import android.util.AttributeSet;
import android.util.Log;
public class AutoSummaryListPreference extends ListPreference {
private static final String TAG = "HK/AutoSummaryListPreference"... | Java |
/*
* Copyright (C) 2008-2009 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) 2010 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 |
/*
* Copyright (C) 2010 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 |
/*
* Copyright (C) 2008 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 appli... | Java |
/*
* Copyright (C) 2011 Darren Salt
*
* Licensed under the Apache License, Version 2.0 (the "Licence"); you may
* not use this file except in compliance with the Licence. You may obtain
* a copy of the Licence at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | Java |
/*
* Copyright (C) 2010 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 |
package org.pocketworkstation.pckeyboard;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
/**
* Variant of SeekBarPreference that stores values as string preferences.
*
* This is for compatibi... | Java |
/*
* Copyright (C) 2008 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 appli... | Java |
/*
* Copyright (C) 2008 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 appli... | Java |
/*
* Copyright (C) 2008 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 applicab... | Java |
/*
* Copyright (C) 2011 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 applicab... | Java |
/*
* Copyright (C) 2010 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 |
/*
* Copyright (C) 2010 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 |
package org.pocketworkstation.pckeyboard;
import java.util.Locale;
import android.content.Context;
import android.content.res.TypedArray;
import android.preference.DialogPreference;
import android.util.AttributeSet;
import android.view.View;
import android.widget.SeekBar;
import android.widget.TextView;
/**
* SeekB... | Java |
/*
* Copyright (C) 2010 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 |
/*
* Copyright (C) 2010 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 |
/*
* Copyright (C) 2010 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 |
/*
* Copyright (C) 2008 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 applicab... | Java |
/*
* Copyright (C) 2008 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 applicab... | Java |
/*
* Copyright (C) 2011 Darren Salt
*
* Licensed under the Apache License, Version 2.0 (the "Licence"); you may
* not use this file except in compliance with the Licence. You may obtain
* a copy of the Licence at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.