text stringlengths 10 2.72M |
|---|
package jp.co.entity_generator.vo;
/**
* エンティティ情報クラス
*/
public class EntityInfoVo {
/** カラム論理名 */
String psyCalName = "";
/** カラム物理名 */
String lgcCalName = "";
/** 型 */
String type = "";
/** サイズ */
String size = "";
/** 必須 */
boolean requiredFlg = false;
/** 初期値 */
String deaule = "";
/** PK */
... |
package ChatServer;
import java.io.DataInput;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.net.Socket;
public class ClientHandler { // содержит подключение клиента, входящий и выходящий потоки
private static final String AUTH_CMD_PREFIX = "/auth";
p... |
package com.pybeta.daymatter.widget;
import com.pybeta.daymatter.DayMatter;
import com.pybeta.daymatter.R;
import com.pybeta.daymatter.WidgetInfo;
import com.pybeta.daymatter.core.DataManager;
import com.pybeta.daymatter.db.DatabaseManager;
import com.pybeta.daymatter.ui.LockBaseActivity;
import com.pybeta.day... |
package com.tencent.mm.plugin.wenote.model.nativenote.spans;
import com.tencent.mm.plugin.wenote.model.nativenote.manager.e;
public final class n extends e {
final boolean qsT;
public final boolean qsU;
public n(int i, int i2, boolean z, boolean z2) {
super(i, i2);
this.qsT = z;
t... |
package org.lenskit.mooc.svd;
import it.unimi.dsi.fastutil.longs.LongList;
import it.unimi.dsi.fastutil.longs.LongSet;
import org.apache.commons.math3.linear.RealVector;
import org.codehaus.groovy.runtime.powerassert.SourceText;
import org.grouplens.lenskit.util.statistics.MeanAccumulator;
import org.lenskit.LenskitRe... |
package com.example.elvisapp;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.RecyclerView;
import android.os.Bundle;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
public class VollyActivity extends AppCompatActivity {
EditText ... |
package pl.ark.chr.buginator.ext.service.impl;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import pl.ark.chr.buginator.domain.core.... |
import java.util.*;
public class State_Of_Wakanda {
public static void main(String args[]){
Scanner scn=new Scanner(System.in);
int nr=scn.nextInt();
int nc=scn.nextInt();
int mat[][]=new int[nr][nc];
for(int i=0;i<nr;i++){
for(int j=0;j<nc;j++){
mat[i][j]=scn.nextInt();
... |
package com.example.lo52_project;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.Rect;
import android.util.DisplayMetrics;
/**
*
* Class of the background grid
* This class is important because it gives the indexes values of pieces.
* Cannot... |
package de.codingmechanic.business;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Map;
import java.util.Properties;
import javax.servlet.http.HttpServletRequest;
import javax.swing.DefaultListModel;
import org.apache.struts2.ServletActionContext;
import org.apache.tile... |
/*
* Copyright © 2019 The GWT Project 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law... |
package com.hiwes.cores.thread.thread2.Thread0218;
import java.util.concurrent.atomic.AtomicLong;
/**
* 但是原子类也并不完全安全:
* 在具有有逻辑性的情况下的输出结果也是随机性的。
* 打印顺序出错,应该每加一次100,再加一次1。
*/
public class MyThread11 extends Thread {
private MyService11 service;
public MyThread11(MyService11 service) {
super();
... |
package com.android.deskclock;
import java.util.Calendar;
import java.util.HashSet;
import com.android.deskclock.provider.Alarm;
import android.app.Dialog;
import android.content.Context;
import android.graphics.Color;
import android.text.Editable;
import android.text.TextWatcher;
import android.text.f... |
package td.td3.service2;
import td.entities.Author;
public class AuthorDAOTest {
public static void main(String[] args)
{
AuthorDAO dao = new AuthorDAO() ;
Author a = dao.findById(12);
if ( a != null ) {
System.out.println("Found " + a);
}
else {
System.out.println("Not found ");
}
dao.de... |
/**
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree [1,2,2,3,4,4,3] is symmetric:
1
/ \
2 2
/ \ / \
3 4 4 3
But the following [1,2,2,null,3,null,3] is not:
1
/ \
2 2
\ \
3 3
Not... |
package RMITest2;
import java.io.*;
import java.net.*;
import java.rmi.*;
import java.rmi.server.*;
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.naming.NamingException;
public class WarehouseClient
{
public static... |
package com.example.bbarroo.bottombar;
import android.content.Intent;
import android.support.constraint.ConstraintLayout;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.support.v4.content.ContextCompat;
import android.view.LayoutInflater;
import android.view.View;
import android.view.... |
package fr.cg95.cvq.business.users;
/**
* Bean used to communication ecitizens creation information.
*
* @author bor@zenexity.fr
*
* FIXME : is it used outside unit tests ?
*/
public class CreationBean {
private String login;
private Long requestId;
private Long homeFolderId;
public void setLo... |
package tes.No15;
public class Main {
public static void main(String[] args) {
Persegi k = new Persegi();
k.setSisi(10.0D);
System.out.println(k);
System.out.println("======================================");
System.out.println("Sisi : " + k.getSisi());
System.out.print... |
/**
* Main class to test the Form project.
*
* @author Erick de Oliveira Silva
* @version 2017.09.23
*/
public class Main
{
public static void main(String[] args)
{
// create the form repository and add the random forms.
repositorioFormas r = new repositorioFormas();
// walks on through the form r... |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package pack1;
/**
*
* @author gaurav.sharma
*/
public class Demo {
public static void main(String args[]) {
System.out.println("");
}
}
|
package de.raidcraft.skillsandeffects.pvp.skills.healing;
import de.raidcraft.RaidCraft;
import de.raidcraft.api.items.CustomItemStack;
import de.raidcraft.api.items.attachments.Consumeable;
import de.raidcraft.skills.api.combat.EffectType;
import de.raidcraft.skills.api.combat.action.HealAction;
import de.raidcraft.s... |
package persistencia;
import java.sql.ResultSet;
import java.util.ArrayList;
import javax.swing.ImageIcon;
import otros.DAOException;
import presentacion.Carta;
public class DAOCartasImp implements IDAOCartas {
protected ConnectionManager conex;
public DAOCartasImp() throws DAOException{
super();
try{
c... |
package prefeitura.siab.controller;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import prefeitura.siab.persistencia.DoencaDao;
import prefeitura.siab.tabela.Doenca;
@Component
public c... |
package pl.training.shop.product.model;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.query.Param;
import org.springframework.transaction.annotation... |
package com.noteshare.questions.controller;
import java.util.List;
import javax.annotation.Resource;
import javax.servlet.http.HttpSession;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework... |
public class AtoZ {
public static void main(String[] agrs) {
char[] alph = new char[26];
for(char ch = 'A', j = 0; j < alph.length; ch++, j++) {
alph[j] = ch;
}
for(int i = 0; i < alph.length; i++) {
System.out.println(alph[i]);
}
}
} |
package com.adachina.mqKafka.sample.api;
import com.adachina.mqKafka.core.AdaKafkaProducer;
import com.adachina.mqKafka.sample.domain.Dog;
import org.apache.kafka.clients.producer.RecordMetadata;
import java.util.concurrent.Future;
/**
* Sample for use {@link AdaKafkaProducer} with Java API.
*
* @author Robert L... |
package com.jiaming.controller;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author jmstart
* @create 2020-04-25 10:37
*/
@RestController
public class QuickController01... |
package com.ceiba.parkingceiba.domain;
import java.util.Date;
import com.ceiba.parkingceiba.model.entity.Parqueadero;
import com.ceiba.parkingceiba.util.EnumTipoVehiculo;
public interface IControlParqueadero {
public boolean validarPlacaIniciaPorLetraA(String placa);
public boolean buscarEspacioPorTipoVehiculo(En... |
package client.model.database;
import client.model.BlackRecord;
import client.model.Record;
import com.sun.org.apache.regexp.internal.RE;
import java.sql.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
/**
* Created by Александр on 26.09.2017.
*/
public class RecordTab... |
package ticketWriter;
import java.io.IOException;
import org.codehaus.jackson.JsonFactory;
import org.codehaus.jackson.JsonGenerationException;
import org.codehaus.jackson.JsonGenerator;
import org.codehaus.jackson.map.JsonMappingException;
import org.codehaus.jackson.map.ObjectMapper;
import org.springframework.beans... |
/**
* OpenKM, Open Document Management System (http://www.openkm.com)
* Copyright (c) 2006-2015 Paco Avila & Josep Llort
*
* No bytes were intentionally harmed during the development of this application.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Ge... |
package com.seu.care.bed.model;
import java.util.Date;
public class Bed {
private Integer id;
private Date createTime;
private String createBy;
private String roomNumber;
private String bedStatus;
private String positionType;
private String name;
public Intege... |
package day31JavaReviews;
import java.util.Arrays;
import java.util.Scanner;
public class ArrayReviews1 {
public static void main(String[] args) {
/*
Array: store multiple data to a variable
Array's size is fixed
*/
int num=10;
//decleration of Array
int [] arr= { 10 };//array s... |
/**
* Copyright (c) 2004-2011 QOS.ch
* All rights reserved.
*
* 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... |
package com.fleet.zip.util;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zip.ZipFile;
import org.apache.tools.zip.ZipOutputStream;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.*;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.Enumeration;
impo... |
package pages;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.FindBy;
import org.openqa.selenium.support.How;
public class GoogleHomePage {
WebDriver driver;
@FindBy(how = How.CSS, using = "#lst-ib")
pu... |
package com.porsche.sell.utils;
import com.porsche.sell.vo.ResultVo;
/** 方法结果集工具类
* @author XuHao
* Email 15229357319@sina.cn
* create on 2018/8/10
*/
public class ResultUtil {
/**
* 成功结果(含有数据)
* @param obj
* @return
*/
public static ResultVo success(Object obj){
ResultVo res... |
import javax.swing.JFrame;
import java.awt.Color;
import javax.swing.JOptionPane;
public class GraphicsMain {
public static void main(String[] args) {
JFrame myFrame = new JFrame("Increment/Decrement");
myFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
GraphicsPanel panel1 = new GraphicsPanel()... |
/*
* created 08.08.2005
*
* $Id: ColumnPair.java 3 2005-11-02 03:04:20Z csell $
*/
package com.byterefinery.rmbench.views.table;
import com.byterefinery.rmbench.model.schema.Column;
import com.byterefinery.rmbench.model.schema.ForeignKey;
/**
* helper class for maintaining a pair of column -> target column in t... |
package Q12;
public class Q12 {
public static void main(String[] args) {
StringBuilder sb1 = new StringBuilder("Duke");
String str1 =sb1.toString();
String str2=str1;
System.out.println(str1==str2);
}
}
|
package com.root.mssm.ui.home;
import android.annotation.SuppressLint;
import android.app.ProgressDialog;
import android.graphics.Color;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListe... |
package name.delonnewman.datediff;
public class Utils {
/**
* Take <code>int</code> value and return <code>String</code>
* value with a prepended zero if it's less than 10.
*
* @param value
* @return String
*/
public static String padZeros(int value) {
if ( value < 10 ) re... |
package elaundry.repository;
import org.springframework.data.jpa.repository.Modifying;
import org.springframework.data.jpa.repository.Query;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.query.Param;
import org.springframework.stereotype.Repository;
import org.sp... |
package com.avogine.junkyard.io.util;
import java.util.Collection;
import java.util.HashMap;
import org.lwjgl.glfw.GLFW;
import com.avogine.junkyard.window.Window;
public class WindowManager {
public static final int WIDTH = 1280;
public static final int HEIGHT = 720;
private static final String TI... |
/*
* Copyright (C) 2022-2023 Hedera Hashgraph, LLC
*
* 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... |
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.components.devtools_bridge.apiary;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.... |
/*******************************************************************************
* Copyright 2018 Dsilva Software Solution
*
* 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... |
import java.time.ZoneId;
public class ZoneIdDemo
{
public static void main(String[] args)
{
ZoneId zoneId = ZoneId.systemDefault();
/*
* Normalizes the time-zone ID, returning a ZoneOffset where
* possible.
*/
zoneId = zoneId.normalized();
System.out.println(zoneId);
}
}
|
package org.idea.plugin.atg.util;
import com.google.common.collect.Sets;
import com.intellij.facet.FacetManager;
import com.intellij.facet.ProjectFacetManager;
import com.intellij.lang.jvm.JvmModifier;
import com.intellij.lang.jvm.JvmParameter;
import com.intellij.lang.jvm.types.JvmType;
import com.intellij.lang.prope... |
package io.naztech.io.naztech.FunctionalInterface;
import java.util.ArrayList;
import java.util.List;
import Services.Consumer;
import Services.Function;
import Services.Predicate;
import Services.Supplier;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
... |
import java.io.*;
import java.util.Calendar;
import java.util.Date;
public class Main {
public static void main(String[] args) {
Main main = new Main();
//Path of file to rename
final String abPath = "/home/aditya";
//File name to rename
final String fileNameWithExtensio... |
package pkg_petshop;
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.Toolkit;
import java.awt.Color;
import javax.swing.border.TitledBorder;
import javax.swing.table.DefaultTableModel;
import javax.swing.JTable;
import javax.swing.JButton;
import javax... |
package model;
import java.util.ArrayList;
public class LlistaClients {
private ArrayList<Client> llistaClients;
public LlistaClients(){
this.llistaClients = new ArrayList<>();
}
public void addClient(Client client){
this.llistaClients.add(client);
}
public ArrayList<Client>... |
package com.tencent.mm.protocal.c;
import com.tencent.mm.bk.a;
import com.tencent.mm.plugin.wxpay.a$k;
import f.a.a.b;
import java.util.LinkedList;
public final class boy extends a {
public int lOH;
public String rTW;
public LinkedList<bhz> rWm = new LinkedList();
public int rXs;
public int rXx;
... |
package byog.Core;
import byog.TileEngine.TETile;
import byog.TileEngine.Tileset;
import java.awt.Color;
import java.util.ArrayList;
import java.util.Random;
public class RandomWorldGenerator implements java.io.Serializable {
private final int WIDTH = Game.WIDTH;
private final int HEIGHT = Game.HEIGHT;
... |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.magapinv.www.accesodatos;
import java.io.*;
import java.util.Properties;
/**
*
* @author root
*/
public final class Global {
//public final static String URL="jdbc:postgresql://172.30.60.87:5432/si... |
package com.mitelcel.pack.ui.fragment;
import android.app.Activity;
import android.os.Bundle;
import android.os.CountDownTimer;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ProgressBar;
import android.widget.R... |
package com.accp.mapper;
import com.accp.domain.Artisangrade;
import com.accp.domain.ArtisangradeExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface ArtisangradeMapper {
int countByExample(ArtisangradeExample example);
int deleteByExample(ArtisangradeExample example);... |
package com.example.admin.masterjson;
import com.example.admin.masterjson.model.ItuneStuff;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
/**
* Created by ADMIN on 9/26/2017.
*/
public class JsonItuneParser {
public static ItuneStuff getItunestuff(String data) throws JS... |
package com.stem.core;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.apache.commons.lang.math.RandomUtils;
import com.stem.core.interfaces.ICodeGenerator;
public class SimpleCodeGenerator implements ICodeGenerator {
private SimpleDateFormat sf = new SimpleDateFormat("yyyyMMddHHmmss");
@Ove... |
public class NeuralNetwork {
Matrix weights_ih;
Matrix weights_ho;
Matrix bias_h;
Matrix bias_o;
public int accuracyValue = 0;
NeuralNetwork(int numI, int numH, int numO) {
weights_ih = new Matrix(numH, numI);
weights_ho = new Matrix(numO, numH);
Matrix.randomize(weights_ih.data, -1, 1);
... |
package cs3500.animator.model.feature;
import cs3500.animator.model.featuremotion.FeatureMotion;
import cs3500.animator.model.featuremotion.FeatureMotionImpl;
import cs3500.animator.model.featurestate.FeatureState;
import cs3500.animator.model.featurestate.OvalFeatureState;
/**
* This class represents an Ellipse Fea... |
package com.cyriii.config;
import com.cyriii.common.ResultMessage;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.AuthenticationException;
import org.springframework.security.web.authentication.AuthenticationFa... |
package com.services;
import com.mappers.CredentialMapper;
import com.model.Credential;
import com.model.Note;
import org.springframework.stereotype.Service;
import javax.annotation.PostConstruct;
import java.util.List;
@Service
public class CredentialService {
private CredentialMapper credentialMapper;
pu... |
package mainGame;
import javax.swing.JFrame;
import org.newdawn.slick.BasicGame;
import org.newdawn.slick.CanvasGameContainer;
import org.newdawn.slick.Color;
import org.newdawn.slick.GameContainer;
import org.newdawn.slick.Graphics;
import org.newdawn.slick.Image;
import org.newdawn.slick.Input;
import ... |
package registration.booking.service.controller;
import java.util.List;
import java.util.stream.Collectors;
import lombok.AllArgsConstructor;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PutMapping;
import or... |
/** ****************************************************************************
* Copyright (c) The Spray Project.
* 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 available at
... |
package szallitas;
import java.util.*;
public class Szallito {
int nhely;
int thely;
// 4
public Szallito(int ossz, int t) {
this.nhely = ossz - t;
this.thely = t;
}
// 4
private LinkedList<Doboz> normal = new LinkedList<Doboz>();
// 4
private LinkedList<D... |
package com.yzblike;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@SpringBootApplication
@EnableEurekaClient
@MapperScan("com.... |
import greenfoot.*; // (World, Actor, GreenfootImage, Greenfoot and MouseInfo)
import java.io.File;
import java.io.IOException;
import java.io.FileNotFoundException;
import java.util.Scanner;
import java.io.OutputStream;
import java.io.FileOutputStream;
/**
* Die einzigen aktiven Akteure in der Roboterwelt sind die R... |
package com.mes.old.meta;
// Generated 2017-5-22 1:25:24 by Hibernate Tools 5.2.1.Final
/**
* JobshopVelowarehouse generated by hbm2java
*/
public class JobshopVelowarehouse implements java.io.Serializable {
private JobshopVelowarehouseId id;
public JobshopVelowarehouse() {
}
public JobshopVelowarehouse(Jobsh... |
/*
* 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 yblts;
/**
*
* @author balanay-au
*/
public class connectionString {
private String SERVER;
private ... |
/**
* @author Mie Plougstrup, Anders Abildgaard, Bo Stokholm
* @Version 16-12-2014
*/
package modelLayer;
public class ChartecCode {
private int chartecCode; // First 4 digits in chartec number.
private String shippingPlace;
private boolean hasDeliveryNo;
/**
* Constructor 1: For creation from c... |
package com.pineapple.mobilecraft.tumcca.mediator;
/**
* Created by yihao on 15/6/6.
*/
public interface IRegister {
public void addUsernameView();
public void addPasswordView();
public void confirm();
public void cancel();
}
|
package com.huashun.lockerrobot.exception;
public class LockerIsFullException extends RuntimeException {
}
|
package Ex1.RenameVisitors;
import Ex1.SearchInContext;
import Ex1.SymbolTables.SymbolTable;
import Ex1.SymbolTables.VarEntry;
import ast.*;
import Ex1.RenameVisitors.RenameVisitor;
import java.util.Set;
public class FieldRenameVisitor extends RenameVisitor {
private MethodDecl lastMethodSeen;
private bool... |
import Healing.HealingTool;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
public class HealingToolTest {
private HealingTool healingTool;
@Before
public void before(){
healingTool = new HealingTool("bread", 10, 10);
}
@Test
public void c... |
package br.edu.ifpb.followup.controller;
import br.edu.ifpb.followup.entity.Professor;
import br.edu.ifpb.followup.dao.ProfessorDAO;
import br.edu.ifpb.followup.entity.ListaDeQuestao;
import br.edu.ifpb.followup.entity.Questao;
import br.edu.ifpb.followup.session.SessionJSF;
import br.edu.ifpb.followup.session.UserSes... |
package com.mx.profuturo.bolsa.model.vo.vacancy;
import com.mx.profuturo.bolsa.model.vo.common.CatalogoVO;
public class InformacionBasicaVacante {
private int idVacante;
private String titulo;
private CatalogoVO areaInteres;
private String descripcionVacante;
private String salario;
private St... |
package fanli.selfcode.binarysortedtree;
// 二叉树创建和遍历
// 二叉树的删除结点操作
// 同一个类 private 同一个包(default) 非同包继承 proteced 非同包不继承 public
public class BinarySortTreeDemo {
public static void main(String[] args) {
int[] arr = new int[]{7,3,10,12,5,1,9,11};
BST_Tree bsTree = new BST_Tree();
for (int num... |
package bootcamp.test.alert;
import org.openqa.selenium.Alert;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import io.github.bonigarcia.wdm.WebDriverManager;
public class Prompt {
public static void main(String[] args) {
WebDriverManager.chro... |
package com.tencent.mm.plugin.sns.model;
import com.tencent.mm.plugin.sns.storage.n;
import com.tencent.mm.sdk.platformtools.x;
class ar$6 implements Runnable {
final /* synthetic */ ar nrO;
final /* synthetic */ ay nrQ;
final /* synthetic */ boolean nrR;
ar$6(ar arVar, ay ayVar, boolean z) {
... |
package seleniumGrid;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
public class findElementTest {
public static void main(String[] args) throws Exception {
... |
package com.tencent.mm.model;
import com.tencent.mm.a.e;
import com.tencent.mm.ak.q;
import com.tencent.mm.kernel.g;
import com.tencent.mm.plugin.report.service.h;
import com.tencent.mm.sdk.platformtools.ag;
import com.tencent.mm.sdk.platformtools.bi;
import com.tencent.mm.sdk.platformtools.x;
import java.io.File;
imp... |
package com.goldgov.gtiles.core.web.webservice;
import java.io.IOException;
import java.util.Map;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
import javax.annotation.PostConstruct;
import javax.jws.HandlerChain;
import javax.jws.WebService;
import org.apache.commons.logging... |
package cn.xeblog.design.patterns.decorator.code;
/**
* cf游戏服务接口
*
* @author anlingyi
*/
public interface CFGameService {
/**
* 登入
* @param username
* @param password
*/
void login(String username, String password);
/**
* 开枪射击
*/
void fire();
/**
* 丢手雷
... |
package com.tencent.mm.plugin.luckymoney.ui;
import com.tencent.mm.g.a.pl;
import com.tencent.mm.plugin.wallet_core.model.a;
import com.tencent.mm.sdk.b.b;
import com.tencent.mm.sdk.b.c;
import com.tencent.mm.sdk.platformtools.x;
import com.tencent.mm.ui.base.h;
class LuckyMoneyPrepareUI$12 extends c<pl> {
final ... |
/**
* Copyright © 2016 公司名. All rights reserved.
*
* @Title: LoginVo.java
* @Prject: mainWeb
* @Package: com.hyx.mainweb.controller.iphone.param
* @Description: TODO
* @author: Administrator
* @date: 2016年6月6日 上午9:26:27
* @version: V1.0
*/
package com.nemo.api.services.param.input.user... |
package kr.ko.nexmain.server.MissingU.membership.model;
import org.hibernate.validator.constraints.NotEmpty;
import kr.ko.nexmain.server.MissingU.common.model.CommReqVO;
public class UpdateFmJoinYnReqVO extends CommReqVO {
private static final long serialVersionUID = -5457239916212812718L;
@NotEmpty
private S... |
package com.tencent.mm.plugin.sns.ui;
import com.tencent.mm.g.a.py;
import com.tencent.mm.sdk.b.b;
import com.tencent.mm.sdk.b.c;
class SnsTimeLineUI$8 extends c<py> {
final /* synthetic */ SnsTimeLineUI odw;
SnsTimeLineUI$8(SnsTimeLineUI snsTimeLineUI) {
this.odw = snsTimeLineUI;
this.sFo = ... |
package com.dps.ring2park.web;
import java.security.Principal;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.PathVariable;
import org.springfram... |
package br.com.caelum.estoque.modelo.usuario;
import java.util.Date;
import javax.xml.ws.WebFault;
@WebFault(name = "AutoricaoFault", messageName = "AutorizacaoFault")
public class AutorizacaoExcveption extends Exception {
public AutorizacaoExcveption(String mensagem) {
super(mensagem);
}
public FaultInfo g... |
package com.tencent.mm.pluginsdk.ui;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Matrix;
import android.graphics.drawable.ColorDrawable;
import android.graphics.drawable.Drawable;
import android.view.LayoutInflater;
import android.view.Vie... |
package SemanticsAndTypes;
import AST.*;
import AST.Visitor.Visitor;
import javax.lang.model.type.ArrayType;
import java.beans.Expression;
import java.lang.reflect.Array;
import java.util.HashSet;
import java.util.Set;
public class ErrorCheckVisitor implements Visitor {
public SymbolTable symbolTable;
publi... |
package com.one.sugarcane.sellerloginlog.dao;
import javax.annotation.Resource;
import org.hibernate.SessionFactory;
import org.hibernate.query.Query;
import org.springframework.stereotype.Repository;
import com.one.sugarcane.entity.SellerLoginLog;
@Repository
public class SellerLoginLogDaoImpl {
@Resource
private ... |
package com.example.healthmanage.ui.activity.temperature.adapter;
import android.content.Context;
import android.widget.ImageView;
import androidx.annotation.Nullable;
import com.bumptech.glide.Glide;
import com.bumptech.glide.request.RequestOptions;
import com.chad.library.adapter.base.BaseQuickAdapter;
import com.... |
package org.jlb.plongee.datamodel;
import org.jlb.tools.metamodel.Entity;
/**
* Classe décrivant un logbook.
*
* @author JLuc
*
*/
public class LogBook extends Entity {
/**
*
*/
public LogBook() {
// TODO Auto-generated constructor stub
}
}
|
package com.im;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.SocketException;
import java.nio.channels.ServerSocketChannel;
public class Test {
public static void main(String[] args) {
String port = "5230";
int num = Runtime.getRuntime().availableProcessors();
Processor[] proc... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.