This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 04-02 17:50:33.835: ERROR/AndroidRuntime(19175): FATAL EXCEPTION: main | |
| java.lang.NullPointerException | |
| at android.text.BoringLayout.isBoring(BoringLayout.java:260) | |
| at android.widget.TextView.makeSingleLayout(TextView.java:6546) | |
| at android.widget.TextView.makeNewLayout(TextView.java:6438) | |
| at android.widget.TextView.onMeasure(TextView.java:6801) | |
| at android.view.View.measure(View.java:12751) | |
| at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:4698) | |
| at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1369) | |
| at android.widget.LinearLayout.measureVertical(LinearLayout.java:660) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.rokonoid.test; | |
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.io.InputStreamReader; | |
| public class Test { | |
| public static void main(String[] args) { | |
| long time = System.currentTimeMillis(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package কম.থেরাপসার্ভিস.ওহেবিশ্ব; | |
| import java.util.Random; | |
| public class ওহেবিশ্ব { | |
| private void বলো_ওহে() { | |
| System.out.println("ওহে বিশ্ব! কেমন আছো"); | |
| } | |
| private int একটি_এলোপাতাড়ি_সংখ্যা_দাও() { | |
| Random এলোপাতাড়ি = new Random(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.codexplo.widget; | |
| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.graphics.Typeface; | |
| import android.text.Spannable; | |
| import android.text.style.StyleSpan; | |
| import android.util.AttributeSet; | |
| import android.util.Log; | |
| import android.view.View; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (C) 2006 The Android Open Source Project | |
| * | |
| * 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 writing, software |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public String region; | |
| public String territory; | |
| public String town; | |
| public String shopType; | |
| public String dmsCode; | |
| private long id; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Security; | |
| using sisv1.Models; | |
| namespace sisv1.Proivider | |
| { | |
| public class ApplicationMembershipProvider : MembershipProvider |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public abstract class SimpleDao<ObjectType, Identity> { | |
| private static final Logger log = Logger.getLogger(SimpleDao.class); | |
| private DatabaseHelper databaseHelper; | |
| protected Dao<ObjectType, Identity> simpleDao; | |
| public SimpleDao(DatabaseHelper databaseHelper, Dao<ObjectType, Identity> simpleDao) { | |
| this.databaseHelper = databaseHelper; | |
| this.simpleDao = simpleDao; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.rokonoid.demo; | |
| public abstract class Account { | |
| private double initialBalance; | |
| private double interest; | |
| private int transection; | |
| private double bankFee; | |
| public Account(double initialAccount) { | |
| this.initialBalance = initialAccount; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.rokonoid.demo; | |
| public class BasicAccount extends Account { | |
| private double threshold; | |
| public BasicAccount(double initialAccount, double threshold) { | |
| super(initialAccount); | |
| this.threshold = threshold; | |
| } |