text
stringlengths
10
2.72M
/** * * Question - Build project * Created by Yu Zheng on 9/21/2015 * * idea: Have no idea yet... * */ public class Solution07 { Project[] findBuildOrder(String[] projects, String[][] dependencies){ Graph graph = buildGraph(projects, dependencies); return orderProjects(graph.GetNodes()); } Graph bu...
package com.example.ComicToon.Models.RequestResponseModels; public class ViewComicSeriesForm { private String comicSeriesName; private String OwnerName; private String viewerName; /** * @return the comicSeriesName */ public String getComicSeriesName() { return comicSeriesName; ...
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ma...
package com.eres.waiter.waiter.viewpager.fragment; import android.arch.lifecycle.LiveData; import android.arch.lifecycle.Observer; import android.arch.lifecycle.ViewModelProviders; import android.os.Bundle; import android.support.annotation.Nullable; import android.support.design.widget.TabLayout; import android.suppo...
package com.tencent.mm.plugin.account.bind.ui; import android.support.v7.app.ActionBarActivity; import android.view.MenuItem; import android.view.MenuItem.OnMenuItemClickListener; import android.widget.EditText; import com.tencent.mm.kernel.g; import com.tencent.mm.plugin.account.a.j; import com.tencent.mm.plugin.acco...
package billFormApplication; import javafx.geometry.Pos; import javafx.scene.layout.HBox; import javafx.scene.text.Text; public class BillFormTotal extends HBox{ private Text totalHtTxt; private Text tvaTxt; private Text netTtcTxt; //Constructor public BillFormTotal() { //Children nodes totalHtTxt = new Te...
package lesson3.begginer; /** * Created by Angelina on 21.01.2017. */ public class Task4 { public static void main(String[] args) { System.out.println("Given an array of integers. Create a method (program) which takes two arguments - this array \n" + "and number that you are looking for -...
package com.LoginTest.server.controller; import com.LoginTest.server.model.User; import com.LoginTest.server.services.UserService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.ResponseEntity; import org.springframework.securi...
package com.packers.movers.commons.utils; import java.util.Objects; import java.util.function.BiConsumer; @FunctionalInterface public interface ThrowableConsumer<T, U> { void accept(T t, U u) throws Exception; default BiConsumer<T, U> andThen(BiConsumer<? super T, ? super U> after) { Objects.require...
package com.greenglobal.eoffice.domain.core.entities; import java.io.Serializable; import java.util.Date; import javax.persistence.Column; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.MappedSuperclass; @MappedSuperclass public...
// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2017.01....
package Kursach.Debug; public class PersonTags { private static String fullName = "fullName"; private static String birthday = "birthday"; private static String birthplace = "birthplace"; private static String genre = "genre"; private static String gender = "gender"; public static String nameO...
package com.box.androidsdk.content.models; import com.eclipsesource.json.JsonObject; import java.util.ArrayList; /** * Class representing a list of representations. */ public class BoxIteratorRepresentations extends BoxIterator<BoxRepresentation> { private static final long serialVersionUID = -4986...
//2. 키보드로 부터 10개의 정수를 입력받아 배열에 저장하고 이중에서 3의 배수인 수만 골라 출력 import java.util.*; class array_Test5 { public static void main(String ar[]){ Scanner sc = new Scanner(System.in); int a; int three; int b[]=new int[10]; for (int i=0 ; i<b.length ; i++) { System.out.println("변수 입력 : "); a = sc.nextInt(); ...
package uns.ac.rs.hostplatserver.constant; public class UserRoles { public static final String ROLE_USER = "ROLE_USER"; private UserRoles() { } }
package edu.dp; public class AbstractFactoryDemo { public class AbstractProductA { } public class AbstractProductB { } public class ProductA1 extends AbstractProductA { } public class ProductA2 extends AbstractProductA { } public class ProductB1 extends AbstractProductB { } ...
package robotsimulator; import java.util.ArrayList; import characteristics.IRadarResult; public class Bot { private double radius; private double frontRange; private double speed; private double stepTurnAngle; private double x; private double y; private double angle; private double m...
package com.huhurezmarius.worldmap.request; public class AddTimezoneRequest { private Long id; private String name; private String zoneName; private String gmt; public AddTimezoneRequest(String name, String zoneName) { this.name = name; this.zoneName = zoneName; } public St...
package com.codelaxy.qwertpoiuy.ModelsNew; public class Captcha { private String id, image, captcha_type, right_count, wrong_count, skip_count, is_right; public Captcha(String id, String image, String captcha_type, String right_count, String wrong_count, String skip_count, String is_right) { this.id ...
package com.codegym.checkinhotel.model; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import lombok.AllArgsConstructor; import lombok.NoArgsConstructor; import javax.persistence.*; import javax.validation.constraints.Min; import java.util.List; @Entity @Table(name = "room_details") @NoArgsConstructor...
package com.example.springakka.repository; import com.example.springakka.entity.Tag; /** * Created by Ido on 2017/9/27. */ public class TagDao extends BasicDao<Tag> { public TagDao() { super(Tag.class); } }
package slepec.hra.planek.prostor.vec; import java.util.Set; /** * Verejne rozhrani pro ovladani veci (predmetu ve hre) * * @author Pavel Jurca, xjurp20@vse.cz * @version 2 */ public interface IVec { boolean pridej(Vec... veci); //jedna vec muze obsahovat dalsi veci Vec odeber(String naze...
package com.excilys.formation.cdb.binding.mapper; import java.sql.ResultSet; import com.excilys.formation.cdb.core.model.Company; import com.excilys.formation.cdb.core.model.Company.CompanyBuilder; public class MapperCompany { public static Company resultSetToCompany(ResultSet resultSetNextise) throws Exception{ ...
package com.tt.miniapp.follow; import android.app.Activity; import android.app.Dialog; import android.content.Context; import android.os.Handler; import android.os.Looper; import android.text.TextUtils; import com.storage.async.Function; import com.storage.async.Observable; import com.storage.async.Scheduler...
/* 1: */ package com.kaldin.common.util; /* 2: */ /* 3: */ import java.io.IOException; /* 4: */ import java.net.URLDecoder; /* 5: */ import java.net.URLEncoder; /* 6: */ import java.util.ArrayList; /* 7: */ import javax.servlet.Filter; /* 8: */ import javax.servlet.Filter...
package com.incuube.bot.model.income; import com.incuube.bot.model.common.IncomeType; import com.incuube.bot.model.income.util.Messengers; import lombok.Data; import java.util.HashMap; import java.util.Map; @Data public abstract class IncomeMessage { private Map<String, Object> params = new HashMap<>(); pri...
/* * 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 br.vianna.aula.appteatro.infrastructure.dao; import br.vianna.aula.appteatro.domain.entities.Pergunta; import br.vianna.aula.a...
package com.project.database.entities; import com.project.database.dto.statement.info.StatementFooter; import com.project.database.dto.statement.info.StatementHeader; import com.project.database.dto.statement.info.StatementStudent; import lombok.*; import java.util.List; @Getter @Setter @AllArgsConstructor @ToString...
package SwordOffer; import java.util.LinkedList; import java.util.Queue; /** * @author renyujie518 * @version 1.0.0 * @ClassName firstNoDuplicationInIO_41.java * @Description 字符流中第一个不重复的字符 * 例如,当从字符流中只读出前两个字符 "go" 时,第一个只出现一次的字符是 "g"。 * 当从该字符流中读出前六个字符“google" 时,第一个只出现一次的字符是 "l"。 * @createTime 2021年08月24日 11:48:...
package com.tencent.mm.plugin.wallet.balance.a.a; import com.tencent.mm.plugin.wallet.balance.ui.lqt.WalletLqtSaveFetchUI; import com.tencent.mm.plugin.wallet_core.model.Bankcard; import com.tencent.mm.pluginsdk.wallet.h; import com.tencent.mm.vending.g.b; import com.tencent.mm.vending.g.g; public final class o { ...
package example; import java.util.Collections; import java.util.LinkedList; public class ListExample { public static void main(String[] args) { LinkedList<Integer> ll = new LinkedList<>(); for (int i=0;i<10;i++){ ll.add(i); } System.out.println(ll); System.ou...
/* * 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 com.blood.view.buy; import java.awt.HeadlessException; import java.sql.Connection; import java.sql.DriverManager; import java....
package com.javaforu.util.tuple; /** * Author: Ashwin Jayaprakash * Email: ashwin.jayaprakash@gmail.com * Web: http://www.ashwinjayaprakash.com */ /** * A utility class for creating various length {@link Tuple}s. */ public class Tuples { public static <X> Tuple<X> newTuple(X c0, X c1) { return new P...
import static org.junit.jupiter.api.Assertions.*; /** * Created by Костя on 31.01.2017. */ class ChildrenTest { }
/* * Copyright 2007 Bastian Schenke 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 writi...
package com.project.backend.entità; import javax.persistence.CascadeType; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.ManyToOne; import javax.persistence.Table; @Entity @Table(name= "caratteri...
package com.tencent.mm.protocal.c; import com.tencent.mm.bk.a; import java.util.LinkedList; public final class cgo extends a { public LinkedList<bax> sAM = new LinkedList(); public LinkedList<app> sAN = new LinkedList(); protected final int a(int i, Object... objArr) { if (i == 0) { f...
package ordo; import java.rmi.*; import java.rmi.registry.*; import java.rmi.server.UnicastRemoteObject ; import java.net.InetAddress; import map.*; import config.* ; import formats.Format; import formats.Format.OpenMode; import formats.Format.Type; public class DaemonImpl_test extends UnicastRemoteObject imple...
package com.example.stockspring.service; import java.sql.SQLException; import java.util.List; import java.util.Optional; import com.example.stockspring.model.User; public interface UserService { public void insertUser(User user) throws SQLException; public List<User> findByuserName(String name); }
package com.maven.event; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; //声明配置类 @Configuration @ComponentScan("com.maven.event") //自动扫描包下的所使用的Controller,Service,Repository,Component的类并注册bean public class EventConfig { }
/** * @ClassName Userinfo.java * @author He.Feng * @version 2.3.7 * @Date 2018-08-01 * @Copyright(C): 2018 the author chen.biao All rights reserved. */ package com.pcms.domain; /** * * @Title userinfo 实体类 * @author He.Feng * @version 2.3.7 * @Date 2018-08-01 * @Copyright(C) 2018 www.sandpay.com.cn Inc. All...
package com.mideas.rpg.v2.callback.old; /*package com.mideas.rpg.v2.callback; import com.mideas.rpg.v2.Mideas; public class PlayerManaChangedCallback implements Callback { @Override public void handleCallback(Object ...obj) { if(Mideas.joueur1() != null && Mideas.joueur1().getHasManaChanged()) { Mideas.joueur...
/* * 摇号时的操作类 */ package controller; import javax.swing.JOptionPane; import javax.swing.JTextField; import model.DataBase; import model.FileText; import model.RandomNumber; public class GetCode { private GetCode() {} public static String code = "";//存储随机号 //检测是否摇过号的方法 private static bo...
/* * Copyright (c) 2009-2011 by Bjoern Kolbeck, * Zuse Institute Berlin * * Licensed under the BSD License, see LICENSE file for details. * */ package org.xtreemfs.foundation.pbrpc.server; import java.io.IOException; import java.net.BindException; import java.net.InetAddress; import java.net.InetS...
package com.rex.demo.study.demo.sink; import com.alibaba.fastjson.JSON; import com.rex.demo.study.demo.entity.Student; import com.rex.demo.study.demo.util.DBConnectUtil; import com.rex.demo.study.demo.util.DruidConnectionPool; import org.apache.flink.api.common.ExecutionConfig; import org.apache.flink.api.common.typeu...
package com.IRCTradingDataGenerator.tradingDataGenerator.Models; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; im...
// Sun Certified Java Programmer // Chapter 5, P340_2 // Flow Control, Exceptions, and Assertions class Tester340_2 { public static void main(String[] args) { //int x = someNumberBetweenOneAndTen; int x = 8; switch (x) { case 2: case 4: case 6: ...
//****************** October 13 ***************** package JavaSessions; public class FunctionsInJava { public static void main(String[] args) { // Functions and methods are synonyms // Functions will reduce code //We can achieve reuseability using functions //Functions are independent of each other //Func...
/* * 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 com.mmt11.tuan3; /** * * @author Dell */ public class DEMOtinhtoan extends javax.swing.JFrame { /** * Creates new...
package sukerPkg; import java.io.FileNotFoundException; import java.io.IOException; import java.io.RandomAccessFile; import java.util.ArrayList; import java.util.List; import java.util.Timer; import org.eclipse.swt.SWT; import org.eclipse.swt.custom.StyledText; import org.eclipse.swt.events.SelectionAdapte...
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Audio; import java.io.IOException; import java.io.InputStream; import javax.microedition.media.Manager; import javax.microedition.media.MediaException; import javax.microedition.media.Player; /** * * @author...
package com.tencent.mm.plugin.honey_pay.ui; import com.tencent.mm.sdk.platformtools.bi; import com.tencent.mm.wallet_core.ui.a; class HoneyPayGiveCardUI$5 implements a { final /* synthetic */ HoneyPayGiveCardUI kls; HoneyPayGiveCardUI$5(HoneyPayGiveCardUI honeyPayGiveCardUI) { this.kls = honeyPayGive...
package com.supconit.kqfx.web.xtgl.entities; import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import jodd.util.StringUtil; import hc.base.domains.AuditedSimpleEntity; import hc.base.domains.ImprovedTree; import hc.base.domains.Tableable; import hc.base.domains.XssFilterSupport; import h...
package com.product.productcat.repository; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; import com.product.productcat.entity.ProductCategory; @Repository public interface ProductCategoryRepository extends JpaRepository<ProductCategory, Intege...
package DPI.wecontroller; import javax.servlet.http.HttpServletRequest; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMa...
class Node { int data; Node left, right; public Node(int item){ data = item; left = null; right = null; } } public class BinaryTree { Node root; static boolean v1= false, v2= false; Node findLCAUtil(Node node, int n1, int n2) { if(node == null) { return null; } ...
package com.example.healthmanage.ui.activity.memberdetail; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.ImageView; import androidx.databinding.BindingAdapter; import com.example.healthmanage.BR; import com.example.healthmanage.R; import com.example.healthmanage.b...
package com.lti.exceptionhandson; import java.io.IOException; import java.util.Scanner; public class CrewMember { public static void main(String[] args)throws IOException,ArithmeticException,NumberFormatException,Exception { Scanner s=new Scanner(System.in); System.out.println("Enter the age:"); int ag...
package com.example.jinliyu.shoppingapp_1.activity; import android.content.Context; import android.content.SharedPreferences; import android.support.v7.app.ActionBar; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support....
/* * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free ...
package GenericDemo; /** * A generic type can be restricted, by type of class or/and one to many * interface types (by using logical operator AND). Keyword 'extends' to set the * upper boundaries. Keyword 'super' to set the lover boundaries. * * @author Bohdan Skrypnyk */ // non generic superclass class NonGen {...
package com.beiyelin.common.document; import javax.xml.bind.annotation.XmlRootElement; /** * Created by newmann on 2017-09-12. */ @XmlRootElement(name = "word") public class WordInfo extends OfficeInfo{ }
package com.snab.tachkit.fragments; import com.snab.tachkit.ClassesJson.ListAdverts; import com.snab.tachkit.globalOptions.SharedPreferencesCustom; import com.snab.tachkit.additional.TableNews; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; impor...
package com.onplan.service; import com.onplan.adviser.strategy.Strategy; import com.onplan.domain.transitory.PriceTick; import java.util.List; public interface StrategyService extends StrategyServiceRemote { public void onPriceTick(final PriceTick priceTick); public void setInstrumentSubscriptionListener( ...
package org.simpleflatmapper.converter.protobuf; import com.google.protobuf.Timestamp; import org.simpleflatmapper.converter.AbstractConverterFactoryProducer; import org.simpleflatmapper.converter.ConverterFactory; import org.simpleflatmapper.util.Consumer; import java.util.Date; public class ProtobufConverterFactor...
package com.avogine.junkyard.audio; import org.lwjgl.openal.AL10; import com.avogine.junkyard.audio.data.OggData; import com.avogine.junkyard.audio.data.WaveData; import com.avogine.junkyard.memory.MemoryManaged; public class AudioBuffer implements MemoryManaged { private int id; public AudioBuffer(...
package com.dyny.gms.db.pojo; import java.util.ArrayList; import java.util.Date; import java.util.List; public class WarningExample { protected String orderByClause; protected boolean distinct; protected List<Criteria> oredCriteria; public WarningExample() { oredCriteria = new ArrayList<Cri...
class Point { int x, y; Point(int a, int b) { x = a; y = b; } } public class ep3_7 { public static void main(String args[]) { Point p1, p2; // 声明对象p1和p2 p1 = new Point(10, 10); // 为对象分配内存,使用 new 和类中的构造方法 p2 = new Point(23, 35); // 为对象分配内存,使用 new 和类中的构造方法 System.out.println(p1 == p2); p1 = p2; Syst...
package com.smxknife.servlet.tomcat.getParameter; import javax.servlet.ServletException; import javax.servlet.annotation.MultipartConfig; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; impor...
package fun.witt.lambda; /** * @author witt * @fileName RunnableDemo * @date 2018/8/18 13:17 * @description * @history <author> <time> <version> <desc> */ public class RunnableDemo implements Runnable { @Override public void run() { System.out.println("start ..."); try { ...
package ua.project.protester.model.executable.result.subtype; import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import ua.project.protester.exception.executable.action.ActionExecutionException; import ua.project.protester.model.executable.result.ActionResult...
package com.tencent.mm.ui.gridviewheaders; import android.database.DataSetObserver; final class f$a extends DataSetObserver { final /* synthetic */ f uuD; private f$a(f fVar) { this.uuD = fVar; } /* synthetic */ f$a(f fVar, byte b) { this(fVar); } public final void onChanged...
package com.yunhe.basicdata.service.impl; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.yunhe.basicdata.entity.Commclass; import com.yunhe.basicdata.entity.CommodityList; import com.yunhe.basicdata.dao.CommodityListMapp...
package bdapp; import java.util.List; public interface UsuarioInterface { public usuario getUser(String username); public List<usuario> getUsers(); }
package com.xueqiu.servlet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.log4j.Logger; @WebServlet(na...
package com.zh.ui; import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import javax.swing.*; public class MyStartFlashingPanel extends JPanel implements Runnable{ int times=1; public void paint(Graphics g) { super.paint(g); g.fillRect(0, 0, 600, 600); if(times%2==0) { //给出...
package ThreadDemo; /** * * @author Bohdan Skrypnyk */ class NewThread2 implements Runnable { String name; Thread tred; NewThread2(String treadname) { name = treadname; tred = new Thread(this, name); //Doesn't whant to run without traget and name //tred.setPriority(Thread.MAX...
package com.liufeng.domian.dto.request; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import javax.validation.constraints.NotBlank; @Data @ApiModel(description = "用户更新信息表") public class UserModifyRequestDTO { @ApiModelProperty(value = "id不为空时表示修改") ...
package com.espendwise.manta.dao; import com.espendwise.manta.model.data.AddressData; import com.espendwise.manta.model.view.ContactView; import com.espendwise.manta.util.Utility; import javax.persistence.EntityManager; public class AddressDAOImpl extends DAOImpl implements AddressDAO{ public AddressDAOImpl(E...
import java.util.*; class Solution { public List<String> generateParenthesis(int n) { List<String> r = new ArrayList<String>(); generate(r, n, 0, 0, ""); return r; } public void generate(List<String> result, int n, int l, int r, String s) { if (r == n) result.a...
package com.stackInstance.HighChartDatabase.model; public class CountList { private Long count; private int day; public int getDay() { return day; } public void setDay(int day) { this.day = day; } public Long getCount() { return count; } public void setCount(Long count) { this.count = count; ...
/* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this fi...
package com.icleveret.recipes.service.impl; import com.icleveret.recipes.component.SessionHolder; import com.icleveret.recipes.dao.IngredientDao; import com.icleveret.recipes.model.Ingredient; import com.icleveret.recipes.service.IngredientService; import org.springframework.beans.factory.annotation.Autowired; import ...
/* * 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 pe.gob.onpe.adan.service.Adan; import java.util.List; import pe.gob.onpe.adan.model.adan.Local; /** * * @author bvaldez */...
package nc.model.passive; import nc.model.PathElement; /** * Created by samok on 26.04.2017. */ public class PassiveElement implements PathElement { public PassiveElement(double cost,double delay){ this.cost = cost; this.delay = delay; } private double cost; private double delay; ...
package com.question.service; import com.question.model.Selections; import java.util.List; public interface SelectionsService { List<Selections> getSelections(int questionId); }
// This file is a part of Humanoid project. // Copyright (C) 2020 Aleksander Gajewski <adiog@mindblow.io>. package io.mindblow.humanoid.canvas.core; import android.opengl.GLSurfaceView; import android.support.v7.app.AppCompatActivity; import io.mindblow.humanoid.context.MasterContext; public class Canvas { pri...
package com.spower.basesystem.common.flash; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.In...
package org.motechproject.server.model; import org.apache.commons.lang.StringUtils; import org.motechproject.server.strategy.MessageContentExtractionStrategy; import org.motechproject.ws.RequestParameterBuilder; import org.motechproject.ws.SMS; import java.io.UnsupportedEncodingException; public class IncomingMessag...
package com.baizhi.cmfz_mzw.service; import com.baizhi.cmfz_mzw.interfaceObj.UserView; import java.util.Map; public interface AppService { Map getFirstPageData(Integer uid, String type, String subType); Object getSi(Integer uid, Integer id); Map getWen(Integer uid, Integer id); Object getLogin(St...
package net.jeremiahsmith.recipeapi.controllers; import lombok.extern.slf4j.Slf4j; import net.jeremiahsmith.recipeapi.exceptions.RecipeNotFoundException; import net.jeremiahsmith.recipeapi.models.Recipe; import net.jeremiahsmith.recipeapi.services.RecipeService; import org.springframework.beans.factory.annotation.Auto...
/* Written in 2016 by David Blackman and Sebastiano Vigna (vigna@acm.org) To the extent possible under law, the author has dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. See <http://creativecommons.org/pub...
package cn.stormbirds.expressDelivery.mapper; import cn.stormbirds.expressDelivery.entity.SysRolePermission; import com.baomidou.mybatisplus.core.mapper.BaseMapper; /** * <p> * 权限列表中权限名对应权限表中详细权限关系 Mapper 接口 * </p> * * @author stormbirds * @since 2019-09-09 */ public interface SysRolePermissionMapper extends B...
package com.tencent.mm.plugin.appbrand.jsapi.d; import com.tencent.mm.plugin.appbrand.page.p; import com.tencent.mm.plugin.appbrand.q.f; import com.tencent.mm.plugin.appbrand.widget.input.AppBrandInputInvokeHandler; import com.tencent.mm.plugin.appbrand.widget.input.AppBrandInputInvokeHandler.b; import java.util.HashM...
/* * 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 Vistas; import Clases.Cl_Conectar; import Clases.Cl_Proveedor; import Clases.Cl_Tipo_Documento; import Clases.Cl_Varios; impor...
package com.pia.workshop.controller; import java.util.List; import javax.validation.Valid; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind...
package com.bit.myfood.controller.api; import com.bit.myfood.controller.CrudController; import com.bit.myfood.model.entity.Category; import com.bit.myfood.model.network.request.CategoryApiRequest; import com.bit.myfood.model.network.response.CategoryApiResponse; import lombok.extern.slf4j.Slf4j; import org.springframe...
package id.ac.um.produkskripsi; import android.content.DialogInterface; import android.content.Intent; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.CardView; import android.view.View; public class MainActivity ex...
/* * Copyright © 2018 tesshu.com (webmaster@tesshu.com) * * 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 require...
package de.raidcraft.skillsandeffects.pvp.skills.healing; import com.sk89q.minecraft.util.commands.CommandContext; import de.raidcraft.skills.api.combat.EffectType; import de.raidcraft.skills.api.combat.action.HealAction; import de.raidcraft.skills.api.exceptions.CombatException; import de.raidcraft.skills.api.hero.He...