Skip to content

Instantly share code, notes, and snippets.

@bjonnh
Created April 26, 2019 21:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjonnh/bc91bedd8b23dccbfd947d9a8d707b42 to your computer and use it in GitHub Desktop.
Save bjonnh/bc91bedd8b23dccbfd947d9a8d707b42 to your computer and use it in GitHub Desktop.
/*
@SolrDocument(solrCoreName = "indexedcitation")
class IndexedCitation {
@Id
@Indexed(name = "id", type = "string")
private var id: String? = null
@Indexed(name = "title", type = "string")
private var title: String? = null
fun getId(): String? {
return id
}
fun setId(id: String?) {
this.id = id
}
fun getTitle(): String? {
return title
}
fun setTitle(title: String?) {
this.title = title
}
} */
// class version 50.0 (50)
// access flags 0x31
public final class net/nprod/publicationrepository/models/nprod/IndexedCitation {
@Lorg/springframework/data/solr/core/mapping/SolrDocument;(solrCoreName="indexedcitation")
// access flags 0x2
private Ljava/lang/String; id
@Lorg/springframework/data/annotation/Id;()
@Lorg/springframework/data/solr/core/mapping/Indexed;(name="id", type="string")
// access flags 0x2
private Ljava/lang/String; title
@Lorg/springframework/data/solr/core/mapping/Indexed;(name="title", type="string")
// access flags 0x11
public final getId()Ljava/lang/String;
@Lorg/jetbrains/annotations/Nullable;() // invisible
L0
LINENUMBER 26 L0
ALOAD 0
GETFIELD net/nprod/publicationrepository/models/nprod/IndexedCitation.id : Ljava/lang/String;
ARETURN
L1
LOCALVARIABLE this Lnet/nprod/publicationrepository/models/nprod/IndexedCitation; L0 L1 0
MAXSTACK = 1
MAXLOCALS = 1
// access flags 0x11
public final setId(Ljava/lang/String;)V
// annotable parameter count: 1 (visible)
// annotable parameter count: 1 (invisible)
@Lorg/jetbrains/annotations/Nullable;() // invisible, parameter 0
L0
LINENUMBER 30 L0
ALOAD 0
ALOAD 1
PUTFIELD net/nprod/publicationrepository/models/nprod/IndexedCitation.id : Ljava/lang/String;
L1
LINENUMBER 31 L1
RETURN
L2
LOCALVARIABLE this Lnet/nprod/publicationrepository/models/nprod/IndexedCitation; L0 L2 0
LOCALVARIABLE id Ljava/lang/String; L0 L2 1
MAXSTACK = 2
MAXLOCALS = 2
// access flags 0x11
public final getTitle()Ljava/lang/String;
@Lorg/jetbrains/annotations/Nullable;() // invisible
L0
LINENUMBER 34 L0
ALOAD 0
GETFIELD net/nprod/publicationrepository/models/nprod/IndexedCitation.title : Ljava/lang/String;
ARETURN
L1
LOCALVARIABLE this Lnet/nprod/publicationrepository/models/nprod/IndexedCitation; L0 L1 0
MAXSTACK = 1
MAXLOCALS = 1
// access flags 0x11
public final setTitle(Ljava/lang/String;)V
// annotable parameter count: 1 (visible)
// annotable parameter count: 1 (invisible)
@Lorg/jetbrains/annotations/Nullable;() // invisible, parameter 0
L0
LINENUMBER 38 L0
ALOAD 0
ALOAD 1
PUTFIELD net/nprod/publicationrepository/models/nprod/IndexedCitation.title : Ljava/lang/String;
L1
LINENUMBER 39 L1
RETURN
L2
LOCALVARIABLE this Lnet/nprod/publicationrepository/models/nprod/IndexedCitation; L0 L2 0
LOCALVARIABLE title Ljava/lang/String; L0 L2 1
MAXSTACK = 2
MAXLOCALS = 2
// access flags 0x1
public <init>()V
L0
LINENUMBER 16 L0
ALOAD 0
INVOKESPECIAL java/lang/Object.<init> ()V
RETURN
L1
LOCALVARIABLE this Lnet/nprod/publicationrepository/models/nprod/IndexedCitation; L0 L1 0
MAXSTACK = 1
MAXLOCALS = 1
@Lkotlin/Metadata;(mv={1, 1, 15}, bv={1, 0, 3}, k=1, d1={"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\u0008\u0002\n\u0002\u0010\u000e\n\u0002\u0008\u0004\n\u0002\u0010\u0002\n\u0002\u0008\u0002\u0008\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u0008\u0010\u0006\u001a\u0004\u0018\u00010\u0004J\u0008\u0010\u0007\u001a\u0004\u0018\u00010\u0004J\u0010\u0010\u0008\u001a\u00020\u00092\u0008\u0010\u0003\u001a\u0004\u0018\u00010\u0004J\u0010\u0010\n\u001a\u00020\u00092\u0008\u0010\u0005\u001a\u0004\u0018\u00010\u0004R\u0014\u0010\u0003\u001a\u0004\u0018\u00010\u00048\u0002@\u0002X\u0083\u000e\u00a2\u0006\u0002\n\u0000R\u0014\u0010\u0005\u001a\u0004\u0018\u00010\u00048\u0002@\u0002X\u0083\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000b"}, d2={"Lnet/nprod/publicationrepository/models/nprod/IndexedCitation;", "", "()V", "id", "", "title", "getId", "getTitle", "setId", "", "setTitle", "api-library"})
// compiled from: IndexedCitation.kt
}
// ================META-INF/api-library.kotlin_module =================
   
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment