Skip to content
Snippets Groups Projects
Commit 03fab6cc authored by Clémentine Nebut's avatar Clémentine Nebut
Browse files

initial commit branch feat1

parent 0e1cd69c
Branches feat1
No related tags found
No related merge requests found
Pipeline #633 failed
pom.xml 0 → 100644
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fr.umfds</groupId>
<artifactId>agl22tpnote</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
import com.google.common.collect.HashBasedTable;
public class Foo {
private String id;
public Foo(String id) {
this.id = id;
}
public String bar(String s){
return s+id;
}
public float bar2(){
HashBasedTable<Integer, String, Float> at=HashBasedTable.create();
return at.get(0, id);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment