text stringlengths 10 2.72M |
|---|
public class Cab {
private String driverName;
private String cabNumberPlate;
private String driverPhoneNumber;
private Location location;
private Account driverAccount;
private String password;
private boolean isAvailable;
private CabTypeDetails cabType;
public final static double DRIVER_SHARE_PERCENTAGE = ... |
package Model.Tiles;
/**
* This class creates a new Mosaic Tile
* @author csd4351
*/
public class MosaicTile extends FindingTile {
private MosaicColor color;
/**
* <b>Constructor:</b> Constructs a new instance of MosaicTile and via the
* parent FindingTile sets with the command super... |
package webley;
@SuppressWarnings("serial")
public class WebleyException extends Exception {
private String errorCode;
public String getErrorCode() {
return errorCode;
}
public String getErrorMessage() {
return errorMessage;
}
private String errorMessage;
WebleyException(String eCode, String eMessage){
su... |
package com.Premium.entity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
import lombok.Data;
@Entity
@Table(name = "workStatusFrom")
@Data
public class WorkStatusFromEntity {
@Id
@Column(name = "statusFrom")
private String statusF... |
class Client {
private int sex; //0 -> female, 1 -> male
private int height; //in cm
private int shiftPattern; //0 -> night, 1 -> day, -1 -> unemployed
boolean smokes; //true -> smoker, false -> non-smoker
String postalDistrict;
int age;
public Client(int wsex,int wheight, int wshiftPattern, boolean wsmokes, S... |
package com.joalib.board.svc;
import java.sql.Connection;
import com.joalib.DAO.DAO;
import com.joalib.DTO.BoardDTO;
public class BoardModifyProService {
public boolean modifyArticle(BoardDTO article) {
boolean suc = false;
DAO dao = new DAO();
DAO.getinstance();
int i = dao.board_update(article);
if... |
package br.com.candleanalyser.simulation;
import java.io.File;
import java.io.IOException;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.List;
import junit.framework.TestCase;
import org.jfree.chart.JFreeChart;
import br.com.candleanalyser.advisors.CandleIndicatorAdvisor;... |
/*
* Copyright (c) 2004 Steve Northover and Mike Wilson
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the "Software"), to deal in the Software
* without restriction, including without limitation the rights to use, copy, ... |
package duke;
import java.util.ArrayList;
import java.util.List;
import duke.task.PriorityLevel;
import duke.task.Task;
/**
* Supports actions involving adding, removing and storing tasks in a list.
*/
public class TaskList {
/**
* List of tasks.
*/
private List<Task> tasks;
/**
* Crea... |
package com.example.raimu_000.miscursos;
import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import java.util.List;
public class RecyclerViewAdapter exten... |
package com.esum.web.ims.jms;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import com.esum.appetizer.AbstractTestCase;
import com.esum.web.ims.jms.dao.JmsInfoDao;
import com.esum.web.ims.jms.vo.JmsInfo;
public class JmsInfoDaoTestCase extends AbstractTestCase {
@Autowired
... |
/**
*
* Copyright (c) 2017, Yustinus Nugroho
*
* This software is created to help SIMPEG division in Badan Kepegawaian Daerah
* gathering and organizing data from other divisions.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the fo... |
package com.esum.framework.core.queue.mq;
public enum JmsConnectorTypes {
CONNECTOR_ALL("all"), /** ALL(MAIN노드에 속한 컴포넌트는 VM모드, 그렇지 않으면 NETTY 모드 사용*/
CONNECTOR_NETTY("netty"), /** 모든 컴포넌트는 NETTY 모드 사용 */
CONNECTOR_VM("invm"); /** 모든 컴포넌트는 VM 모드 사용*/
private String value = "";
private JmsConnectorTypes(String va... |
package com.vti.entity;
import java.time.LocalDate;
public class Bao extends QLTL {
private LocalDate ngayphathanh;
public Bao(int matailieu, String tennhasanxuat, String sobanphathanh, LocalDate ngayphathanh) {
super(matailieu, tennhasanxuat, sobanphathanh);
this.ngayphathanh = ngayphathanh;
}
... |
package coffeeshop;
public class Milk {
private double fatProcentage = 3.0;
public double getFatProcentage() {
return fatProcentage;
}
public void setFatProcentage(double fatProcentage) {
this.fatProcentage = fatProcentage;
}
}
|
package window.cardTournament;
public interface UpdateDatabaseListener {
public void update_database();
}
|
package dk.nemprogrammering.android.listeapp;
import android.arch.lifecycle.LiveData;
import android.arch.persistence.room.Dao;
import android.arch.persistence.room.Delete;
import android.arch.persistence.room.Insert;
import android.arch.persistence.room.Query;
import android.arch.persistence.room.Update;
@Dao
public ... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package btnhom1;
import java.io.IOException;
import java.util.Arrays;
/**
*
* @author Linh Liv
*/
public class QLGiaoVien{
... |
package br.com.estore.web.model;
import java.util.Date;
public class WishListBean {
// ID_LIST INT NOT NULL AUTO_INCREMENT ,
// DATE_WISH_LIST DATE NOT NULL ,
// CUSTOMER_ID INT NOT NULL ,
// ID_BOOK INT NOT NULL ,
private int id;
private Date date;
private int customerID;
private int bookID;
public int g... |
package com.eegeo.mapapi.services.mapscene;
import androidx.annotation.UiThread;
import androidx.annotation.WorkerThread;
import com.eegeo.mapapi.util.NativeApiObject;
import java.util.concurrent.Callable;
/**
* A handle to an ongoing mapscene request.
*/
public class MapsceneRequest extends NativeApiObject {
... |
package edu.upenn.cis455.Indexer.EMRIndexer;
import static spark.Spark.*;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.reg... |
package com.legaoyi.protocol.down.messagebody;
import java.util.List;
import java.util.Map;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.legaoyi.protocol.message.MessageBody;
/**
* 事件设置
*
* ... |
package gradedGroupProject;
import java.util.List;
public class DeleteBankAccount {
private String confirm;
private int accountNum;
private int pos;
public void deleteBankClient( BankClient loggedInClient,List<BankClient> bankClients ) {
provideChoice(loggedInClient);
provideVerification();
... |
import java.util.LinkedList;
/** NIfte.java
*
* Author: Greg Choice c9311718@uon.edu.au
*
* Created:
* Updated: 28/09/2018
*
* Description:
* STNode sub-class for NIFTE rule
*
*/
public class NIfte extends STNode
{
public NIfte(LinkedList<Token> tokenList, SymbolTable table)
{
... |
// Copyright 2016 Yahoo Inc.
// Licensed under the terms of the New-BSD license. Please see LICENSE file in the project root for terms.
package com.yahoo.test.monitor;
import java.io.IOException;
import java.io.OutputStream;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.se... |
package undirectedGraphANDdijkstra;
/**<pre>
* ********************************************************************************************************************
* DijkstraPath.java
* ******************************************************************... |
package com.xdd.vsuproject;
import com.badlogic.gdx.assets.AssetManager;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.TextureRegion;
import com.badlogic.gdx.scenes.scene2d.ui.Button;
import com.badlogic.gdx.scenes.scene2d.ui.ImageButton;
import com.badlogic.gdx.scenes.scene2d.ui.Skin;... |
package br.mpac.controller;
import javax.ejb.EJB;
import javax.enterprise.context.SessionScoped;
import javax.inject.Named;
import br.mpac.dados.EstadoCivilDao;
import br.mpac.dados.GenericDao;
import br.mpac.entidade.EstadoCivil;
@Named("estadoController")
@SessionScoped
public class EstadoCivilController extends A... |
//------------------------------------------------------------------------------
// Copyright (c) 2012 Microsoft Corporation. All rights reserved.
//
// Description: See the class level JavaDoc comments.
//------------------------------------------------------------------------------
package com.microsoft.live;
/**
... |
package com.main.parse;
import java.nio.file.Paths;
import java.nio.file.StandardCopyOption;
import java.util.ArrayList;
import java.util.LinkedList;
import com.database.mysql.AppCommit;
import com.database.mysql.AppCommitsDB;
import com.database.mysql.MigrationRule;
import com.database.mysql.MigrationRuleDB;
import... |
package com.icanit.app_v2.common;
import org.json.JSONException;
import org.json.JSONObject;
import android.graphics.Color;
import android.widget.TextView;
import com.icanit.app_v2.util.AppUtil;
public class VeriCodeSender implements Runnable {
private TextView tv;
private String url, message, veriCod... |
package br.com.wasys.gfin.cheqfast.cliente.endpoint;
import br.com.wasys.gfin.cheqfast.cliente.model.CredencialModel;
import br.com.wasys.gfin.cheqfast.cliente.model.DispositivoModel;
import br.com.wasys.gfin.cheqfast.cliente.model.RecoveryModel;
import br.com.wasys.gfin.cheqfast.cliente.model.ResultModel;
import retr... |
package io.zipcoder.fundamentals.day2.lab1;
import java.util.Scanner;
public class Greeting {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
System.out.println("What is your name?");
String name = sc.nextLine();
if (name.equals("Bob") || name.equals("... |
package home.stanislavpoliakov.meet7_practice;
import android.util.Log;
import java.util.List;
/**
* Класс элемента данных. Эта реализация несколько нарушает первый принцип SOLID, так как
* внутри себя описывает три разновидности данных. Надо сделать общий интерфейс данных и три
* реализации для каждого типа.
* ... |
package hr.ivlahek.financial.app.constants;
/**
* @author ivlahek
*/
public enum PropertyConstants {
DATABASE_NAME("db.database"), DB_SERVER("db.server");
private String propertyName;
PropertyConstants(String propertyName) {
this.propertyName = propertyName;
}
public String getProperty... |
package spring.di.demo.integration;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
impor... |
package com.app.noan.listener;
import com.app.noan.model.BrandModel;
import java.util.List;
/**
* Created by Suleiman on 16/11/16.
*/
public interface BrandAdapterCallback {
void retryBrandId(List<BrandModel> brandList);
}
|
package com.mredrock.freshmanspecial.data;
import android.util.Log;
import com.mredrock.freshmanspecial.httptools.GetDataFromServer;
import java.util.ArrayList;
import java.util.List;
import rx.Subscriber;
/**
* Created by 700-15isk on 2017/8/8.
*/
public class DataFactory {
private List<SexRatio>sexRatio... |
/**
* project name:saas
* file name:SysUserServiceImpl
* package name:com.cdkj.system.service.impl
* date:2018/2/9 下午2:36
* author:bovine
* Copyright (c) CD Technology Co.,Ltd. All rights reserved.
*/
package com.cdkj.schedule.system.service.impl;
import com.cdkj.common.base.service.impl.BaseServiceImpl;
import... |
package web.util;
import java.lang.reflect.Field;
import java.sql.*;
import java.util.*;
import javax.sql.DataSource;
import org.apache.commons.beanutils.BeanUtils;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import w... |
package de.marcoheintze.dartscoreboard.utils;
public class DartsConstants
{
// Bogey-Numbers sind zahlen die zwar im Finish-Bereich liegen,
// aber im Modus Double-Out mit 3 Darts nicht auszuwerfen sind.
public static final int BOGEY_169 = 169;
public static final int BOGEY_168 = 168;
public static... |
package gabriel.luoyer.promonkey.cptslide;
import gabriel.luoyer.promonkey.R;
import gabriel.luoyer.promonkey.cptslide.ChapterFragment.onChapterPageClickListener;
import gabriel.luoyer.promonkey.utils.Utils;
import gabriel.luoyer.promonkey.view.ChapterToggleView;
import java.util.ArrayList;
import android.o... |
import java.util.Date;
import java.util.List;
public class ServiceImpl implements Service {
@Override
@Cache(cacheType = CacheType.FILE, fileNamePrefix = "data", zip = true, identityBy = {String.class, double.class})
public List<String> work(String item) {
return null;
}
@Override
@Ca... |
package com.cninnovatel.ev.conf;
import java.text.SimpleDateFormat;
import java.util.Locale;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.Button;
import androi... |
package cn.soulutions.pointJudger;
import java.util.Scanner;
//只能通过70%,求大佬帮忙看看
public class Main2 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int N = input.nextInt();
int[][] p = new int[N][2];
for (int i = 0; i < N; i++) {
p[i][0]... |
/*
* Copyright 2017 Goldman Sachs.
* 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 in... |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.jearl.ejb.model.document;
import org.jearl.ejb.model.Entity;
/**
*
* @author bamasyali
*/
public interface Document<USER> extends Entity<Integer, USER> {
Integer getDocId();
void setDocId(Integ... |
package com.yf.accountmanager.sqlite;
import java.io.File;
import java.util.Set;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.text.TextUtils;
import com.yf.accountmanager.sqlite.ISQLite.IPathColumns;
public class IPat... |
package com.example.android.stock_war;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.DefaultItemAnimator;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import com.example.andro... |
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import com.sun.xml.bind.CycleRecoverable;
public class Main {
public static void main(String[] args) throws JAXBException {
// let's create an obvious cycle
Person p = new Person();
p.... |
package com.codebook.gpa4;
import androidx.appcompat.app.AppCompatActivity;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
import... |
package cn.test.clone.deep.serializable;
import java.io.*;
/**
* Created by xiaoni on 2018/12/19.
*/
public class Student2 implements Serializable {
/**
*
*/
public static final long serialVersionUID = 1L;
public String name;// 常量对象。
public int age;
public Professor2 p;// 学生1和学生2的引用值都是... |
package lk.logic;
/**
*@author Veranga Sooriyabandara
*Our Java Class
*/
public interface UserLoginInterface {
public boolean checkUserEnteredPINs(String PIN1,String PIN2);
}
|
package com.worldchip.bbpaw.bootsetting.util;
import android.net.Uri;
public class Utils {
/** 用户注册本地shard保存key **/
public static final String IS_FIRST_START_KEY = "first_start";
public static final String PHOTO_SHARD_KEY = "user_photo";
public static final String USERNAME_SHARD_KEY = "user_name";
public stati... |
package com.mvc.btc.simulator;
/**
* Created by lrkin on 2017/6/7.
*/
public enum LaneType {
enLane,
exLane;
private LaneType() {
}
}
|
/*
* Copyright (c) 2013-2014, Neuro4j.org
*
* 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... |
package com.hzero.order.app.service;
import com.hzero.order.domain.entity.SoHeader;
import org.springframework.http.ResponseEntity;
import java.security.Principal;
/**
* 应用服务
*
*/
public interface SoHeaderService {
ResponseEntity<String> updateStatus(String status,SoHeader soHeader, Principal principal);
}
|
import static org.junit.Assert.*;
import org.junit.Test;
public class tgTest {
private Triangle triangle;
private Triangle illegalTriangle;
private Triangle illegalTriangle2;
private Triangle regularTriangle;
private Triangle isoscelesTriangle;
@Test
public void test(){
triangle = new Triangle(3, 4, 5);
i... |
package co.jijichat.muc;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Comparator;
import java.util.List;
import tigase.jaxmpp.core.client.BareJID;
import tigase.jaxmpp.core.client.JID;
import tigase.jaxmpp.core.client.SessionObject;
import tigase.jaxmpp.core.client.exceptions.Ja... |
package com.grognak.sobuddy.app;
public class Main {
public static void main(String[] args) {
QueryTerminal queryTerminal = new QueryTerminal();
queryTerminal.startLoop();
}
}
|
/*
* lcmsCourseOrgDAO.java 1.00 2011-09-05
*
* Copyright (c) 2011 ???? Co. All Rights Reserved.
*
* This software is the confidential and proprietary information
* of um2m. You shall not disclose such Confidential Information
* and shall use it only in accordance with the terms of the license agreement
* y... |
package io.github.stepheniskander.equationsolver;
public class Matrix {
private RationalNumber[][] numMatrix;
public Matrix(RationalNumber[][] constructorMatrix) {
numMatrix = constructorMatrix;
}
public static Matrix matrixMultiply(Matrix m1, Matrix m2) {
RationalNumber[][] result = ... |
import java.util.Random;
import java.util.Scanner;
public class Main {
public int size;
public static void main(String args[]) {
Scanner input = new Scanner(System.in);
System.out.println("Размер матрицы: ");
int size = input.nextInt();
int matrix[][] = new int[size][size];
... |
package com.auro.scholr.home.presentation.view.fragment;
import android.Manifest;
import android.annotation.SuppressLint;
import android.app.Dialog;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.PackageManager;
import android.graphics.B... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package chapseven;
import java.util.Scanner;
/**
*
* @author Frebby
*/
public class PhoneNumberFormat {
public static void mai... |
/**
* 用于提供ip。定义了接口规范和一些具体实现,从不同的几个网站获取ip资源,
* 这些网站可能失效,导致内置的这些方法无法使用。此时开发者可以在自己的项
* 目中实现Provider接口,在初始化ip池的时候将其加入,可以达到与内置实现
* 相同的效果。
*/
package com.oscroll.strawboat.provider; |
package com.goldenasia.lottery.db;
import android.content.Context;
import com.j256.ormlite.android.apptools.OpenHelperManager;
import com.j256.ormlite.dao.Dao;
import com.j256.ormlite.stmt.DeleteBuilder;
import java.sql.SQLException;
import java.util.List;
/**
*11选5秒秒彩
* Created by Gan on 2018/1/29.
*/
public c... |
package handler;
import com.google.common.collect.Maps;
import org.bukkit.entity.Player;
import org.bukkit.scoreboard.Scoreboard;
import java.util.HashMap;
public final class ScoreboardManager {
private static final HashMap<String, ScoreboardHandler> handlers = Maps.newHashMap();
private final HashMap<Strin... |
package com.theshoes.jsp.member.controller;
import java.io.IOException;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;... |
package org.gracejvc.vanrin.service;
import java.util.List;
import org.gracejvc.vanrin.dao.NationalityADO;
import org.gracejvc.vanrin.model.Nationality;
import org.springframework.transaction.annotation.Transactional;
public class NationalityServiceImpl implements NationalityService {
private NationalityAD... |
package com.egame.app.tasks;
import java.util.ArrayList;
import java.util.List;
import android.app.ProgressDialog;
import android.content.Context;
import android.os.AsyncTask;
import android.telephony.SmsManager;
import android.telephony.TelephonyManager;
import android.text.TextUtils;
import android.util.... |
package by.orion.onlinertasks.presentation.main;
import com.arellomobile.mvp.viewstate.strategy.AddToEndSingleStrategy;
import com.arellomobile.mvp.viewstate.strategy.OneExecutionStateStrategy;
import com.arellomobile.mvp.viewstate.strategy.StateStrategyType;
import by.orion.onlinertasks.presentation.BaseMvpView;
@S... |
/*
* Copyright 2002-2021 the original author or authors.
*
* 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... |
package com.tide.demo17;
public class Demo01Person {
public static void main(String[] args) {
Person person=new Person();
person.setName("盖伦");
person.setAge(19);
//方法一
Weapon weapon=new Weapon("多兰剑");
person.setWeapon(weapon);
//方法二
// person.setWea... |
package com.edu.realestate.dao;
import java.sql.ResultSet;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import com.edu.realestate.model.Picture;
public class PictureDaoJDBC extends AbstractDaoJDBC implements PictureDao {
@Override
public void create(Picture p) {
// TODO Auto-gene... |
/**
*
*/
package section1.view1;
import java.awt.BorderLayout;
import java.awt.GridBagLayout;
import java.awt.GridLayout;
import javax.swing.BorderFactory;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import j... |
package com.mkd.adtools.bean;
import javax.persistence.Entity;
import javax.persistence.Id;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
@Data
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = true)
@Entity(name = "ad_site")
publi... |
package com.hrrm.infrastructure.web.internal;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ServiceScope;
import org.osgi.service.http.context.ServletContextHelper;
import org.osgi.service.http.whiteboard.HttpWhiteboardConstants;
@Component(service = ServletCon... |
package com.example.test_appman;
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Context;
import android.os.Bundle;
import android.os.Handler;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.widg... |
import java.io.*;
import java.net.*;
import java.util.*;
public class Server {
public static void main(String[] args) {
ArrayList<ServerThread> threads = new ArrayList<ServerThread>(0);
ChatManager chats = new ChatManager();
int i=0;
int port = 6868;
try (ServerSocket server... |
package cdp.participacao;
import cdp.projetos.Monitoria;
/**
* Representa um aluno graduando no sistema.
*
* @author Yuri Silva
* @author Tiberio Gadelha
* @author Matheus Henrique
* @author Gustavo Victor
*/
public class AlunoGraduando extends Participacao {
private static final double MAXIMO_PONTOS_ATIN... |
package com.zantong.mobilecttx.car.fragment;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import com.zantong.mobilecttx.car.adapter.CarChooseXingAdapter;
import com.zantong.mobilecttx.api.CallBack;
import com.zantong.mobilecttx.api.CarApiClient;
import com.jcodecraeer.xrecyclervi... |
package com.cedo.cat2auth.dao;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.cedo.cat2auth.model.Menu;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Component;
import java.util.List;
/**
* 菜单类
*
* @author chendo... |
package com.cdgpacific.sellercatpal;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.P... |
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package gestionbadr.RDV;
import GestionRDV.ConsulterConvontionRDV;
import java.sql.Connection;
import java.sql.PreparedStatement;
impo... |
package org.iMage.mosaique.rectangle;
import org.junit.*;
import org.iMage.mosaique.rectangle.RectangleShape;
public class RectangleShapeTest {
@Test
public void RectangleShapeTest(){
}
}
|
package vo;
public class BidItemUserJoinVo {
String item_name,item_mode,diff,user_first_name,user_city,user_state,user_country,user_email,user_phone_no,bidding_timestamp,user_id,item_condition,bid_status;
public String getDiff() {
return diff;
}
public void setDiff(String diff) {
this.diff = diff;
}
public... |
package com.dqm.msg;
import com.dqm.annotations.Index;
import com.dqm.msg.common.MsgPack;
import lombok.Getter;
import lombok.Setter;
/**
* Created by dqm on 2018/9/14.
*/
@Setter
@Getter
public class GetHeaders implements MsgPack {
@Index(val=0, specialType = Index.SpecialType.VARINT)
private int startCou... |
package com.solunaire.vectrize;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.Uri;
import android.os.ParcelFileDescriptor;
import android.support.design.widget.FloatingActionButton;
import android.support.v7.app.AppCompatActivity;
import androi... |
package com.gsn.data.result;
import com.gsn.constants.ResultCodeConstants;
import java.util.Date;
/**
* 任何api或者dao方法的执行结果数据结构
* <p />
* 包含执行是否成功的信息、错误提示和一个特定类型的返回值;不需要返回值的请使用{@link com.gsn.data.result.ExecInfo}
*
* @author GSN
*/
public class ExecResult<T> {
//---------------------------------------------... |
package loyer.sqlserver;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* SQLserver2017连接帮助类
* @author Loyer
*
*/
public class DataBase {
//数据库连接字符串
private final static String driver = "com.microsoft.sql... |
package com.example.tp2j2e_crud.servlets;
import com.example.tp2j2e_crud.beans.Produit;
import com.example.tp2j2e_crud.dao.IProduitDao;
import com.example.tp2j2e_crud.dao.ProduitDaoImpl;
import com.example.tp2j2e_crud.model.ProduitModele;
import jakarta.servlet.*;
import jakarta.servlet.http.*;
import jakarta.servlet.... |
package com.simple.imlib.handler;
import com.tencent.mars.wrapper.remote.PushMessage;
public abstract class BusinessHandler {
public abstract boolean handlerReceivedMessage(PushMessage pushMessage);
}
|
package com.contentstack.sdk.utilities;
import android.annotation.SuppressLint;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;
/**
* Helper class of utilities.
*
*
* @author contentstack.... |
package com.baby.babygrowthrecord.Growth;
/**
* Created by Administrator on 2016/11/24.
*/
public class Growth_Class {
private long id;
private String year;
private String week;
private String duration;
private String content;
private int img_first;
private int img_second;
public Gro... |
/**
*/
package iso20022;
import java.lang.String;
import java.util.Date;
import java.util.Map;
import org.eclipse.emf.common.util.DiagnosticChain;
import org.eclipse.emf.common.util.EList;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Repository Concept</b></em>'.
* <!-- end-user-... |
package com.becool.baidu.service;
import org.apache.poi.ss.usermodel.Workbook;
import com.becool.baidu.pojo.FileBean;
public interface DoctorService {
FileBean parseData(Workbook wb,String company);
}
|
package com.prep.datastructure.collection;
import java.util.EnumSet;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.Set;
import java.util.SortedSet;
import java.util.TreeSet;
public class Set_Example {
public static void main(String[] args){
Set ... |
package com.crypto.controller;
import java.util.ArrayList;
import java.util.List;
import javax.websocket.server.PathParam;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
import co... |
package com.junzhao.rongyun.activity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.text.Html;
import android.view.View;
import android.widget.RadioGroup;
import android.widget.TextView;
import com.junzhao.base.base.APPCac... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.